Introduction

For one of my machine learning classes we had a project that consumed financial data. I have extended that project to use machine learning to see if an indicator, or predictor, can be found that identifies market tops that occur prior to recessions. Then I use the model to build a trading strategy and backtest it to see how it performs.

Get Economic and Financial Data

Acquiring the data consists of two steps. First the code pulls the data into zoo objects which are then collapsed into a single data frame (df.data). Features are extracted from these series and added to the df.data data frame.

Sample call to pull economic data

Data is pulled from several sources include FRED, yahoo, and Google. The code below shows an example that pulls in the consumer price index (CPI) from the FRED. I pull data using quantmod, Quandl, and some manual extractions stored in spreadsheets.

# Consumer Price Index for All Urban Consumers: All Items
if (bRefresh == TRUE) {
  getSymbols("CPIAUCSL", src = "FRED", auto.assign = TRUE)
}
## [1] "CPIAUCSL"
## Warning: ASDAX contains missing values. Some functions will not work if objects
## contain missing values in the middle of the series. Consider using na.omit(),
## na.approx(), na.fill(), etc to remove or replace them.
## Warning: ^TNX contains missing values. Some functions will not work if objects
## contain missing values in the middle of the series. Consider using na.omit(),
## na.approx(), na.fill(), etc to remove or replace them.
## Warning: CL=F contains missing values. Some functions will not work if objects
## contain missing values in the middle of the series. Consider using na.omit(),
## na.approx(), na.fill(), etc to remove or replace them.
## Warning: ^IRX contains missing values. Some functions will not work if objects
## contain missing values in the middle of the series. Consider using na.omit(),
## na.approx(), na.fill(), etc to remove or replace them.
## Warning: ^STOXX50E contains missing values. Some functions will not work if
## objects contain missing values in the middle of the series. Consider using
## na.omit(), na.approx(), na.fill(), etc to remove or replace them.

Load up the EIA data

## Warning in .getMonEIA(ID, key = key): NAs introduced by coercion

## Warning in .getMonEIA(ID, key = key): NAs introduced by coercion

Load rig count data

The Baker Hughes rig count numbers

USDA data

Loading in farm data

## Warning in read_fun(path = enc2native(normalizePath(path)), sheet_i = sheet, :
## Expecting numeric in E3 / R3C5: got a date
## New names:
## * `` -> ...1
## * `` -> ...2
## * `` -> ...3
## * `` -> ...4
## * `` -> ...5
## * ...
## Warning: NAs introduced by coercion

Loading in Silverblatt’s S&P 500 spreadsheet starting with the quarterly data.

## New names:
## * `PER SHR` -> `PER SHR...2`
## * `PER SHR` -> `PER SHR...3`
## * `PER SHR` -> `PER SHR...4`
## * SHARE -> SHARE...5
## * SHARE -> SHARE...6

Now load in the estimates

## New names:
## * `` -> ...2
## * `` -> ...3
## * `` -> ...4
## * `` -> ...5
## * `` -> ...6
## * ...
## New names:
## * `` -> ...2
## * `` -> ...3
## * `` -> ...4
## * `` -> ...5
## * `` -> ...6
## * ...

Covid 19 Data

Get the Covid-19 data from JHU

## Parsed with column specification:
## cols(
##   date = col_date(format = ""),
##   province = col_character(),
##   country = col_character(),
##   lat = col_double(),
##   long = col_double(),
##   type = col_character(),
##   cases = col_double()
## )
## No updates are available
## `summarise()` ungrouping output (override with `.groups` argument)
## `summarise()` regrouping output by 'country' (override with `.groups` argument)

Feature Extraction

With the raw data downloaded, some of the interesting features can be extracted. The first step is reconcile the time intervals. Some of the data is released monthly and some daily. I chose to interpolate all data to a daily interval. The first section of code adds the daily rows to the dataframe.

The code performs interpolation for continuous data or carries it forward for binary data like the recession indicators.

source("calcInterpolate.r")
df.data <- calcInterpolate(df.data, df.symbols)
## Warning in merge.xts(xtsData, get(df.symbols$string.symbol[idx])): NAs
## introduced by coercion

Truncate data

Create aggregate series

Some analysis requires that two or more series be combined. For example, normallizing debt by GDP to get a sense of the proportion of debt to the total economy helps understand the debt cycle.

Year over year, smoothed derivative, and log trends tend to smooth out seasonal variation. It gets used so often that I do this for every series downloaded.

source("calcFeatures.r")
lst.df <- calcFeatures(df.data, df.symbols)
## [1] "CPIAUCSL - CPIAUCSL_YoY - Consumer Price Index for All\nUrban Consumers: All Items"
## [1] "USREC - USREC_YoY - NBER based Recession Indicators"
## [1] "USREC has zero or negative values. Log series will be zero."
## [1] "UNRATE - UNRATE_YoY - Civilian Unemployment Rate U-3"
## [1] "PCEPI - PCEPI_YoY - Personal Consumption Expenditures:\nChain-type Price Index"
## [1] "CCSA - CCSA_YoY - Continued Claims (Insured Unemployment)"
## [1] "CCNSA - CCNSA_YoY - Continued Claims (Insured Unemployment, NSA)"
## [1] "NPPTTL - NPPTTL_YoY - Total Nonfarm Private Payroll Employment (ADP)"
## [1] "U6RATE - U6RATE_YoY - Total unemployed + margin + part-time U-6"
## [1] "PAYNSA - PAYNSA_YoY - All Employees: Total Nonfarm Payrolls (NSA)"
## [1] "TABSHNO - TABSHNO_YoY - Households and nonprofit\norganizations; total assets, Level"
## [1] "HNONWPDPI - HNONWPDPI_YoY - Household Net Worth, percent Dispsable Income"
## [1] "INDPRO - INDPRO_YoY - Industrial Production Index"
## [1] "RRSFS - RRSFS_YoY - Real Retail and Food Services Sales"
## [1] "RSALES - RSALES_YoY - Real Retail Sales (DISCONTINUED)"
## [1] "W875RX1 - W875RX1_YoY - Real personal income\nexcluding current transfer receipts"
## [1] "RPI - RPI_YoY - Real personal income"
## [1] "PCOPPUSDM - PCOPPUSDM_YoY - Global price of Copper"
## [1] "NOBL.Open - NOBL.Open_YoY - "
## [1] "NOBL.High - NOBL.High_YoY - "
## [1] "NOBL.Low - NOBL.Low_YoY - "
## [1] "NOBL.Close - NOBL.Close_YoY - "
## [1] "NOBL.Volume - NOBL.Volume_YoY - "
## [1] "NOBL.Adjusted - NOBL.Adjusted_YoY - "
## [1] "SCHD.Open - SCHD.Open_YoY - "
## [1] "SCHD.High - SCHD.High_YoY - "
## [1] "SCHD.Low - SCHD.Low_YoY - "
## [1] "SCHD.Close - SCHD.Close_YoY - "
## [1] "SCHD.Volume - SCHD.Volume_YoY - "
## [1] "SCHD.Adjusted - SCHD.Adjusted_YoY - "
## [1] "PFF.Open - PFF.Open_YoY - "
## [1] "PFF.High - PFF.High_YoY - "
## [1] "PFF.Low - PFF.Low_YoY - "
## [1] "PFF.Close - PFF.Close_YoY - "
## [1] "PFF.Volume - PFF.Volume_YoY - "
## [1] "PFF.Adjusted - PFF.Adjusted_YoY - "
## [1] "HPI.Open - HPI.Open_YoY - "
## [1] "HPI.High - HPI.High_YoY - "
## [1] "HPI.Low - HPI.Low_YoY - "
## [1] "HPI.Close - HPI.Close_YoY - "
## [1] "HPI.Volume - HPI.Volume_YoY - "
## [1] "HPI.Adjusted - HPI.Adjusted_YoY - "
## [1] "GSFTX.Open - GSFTX.Open_YoY - "
## [1] "GSFTX.High - GSFTX.High_YoY - "
## [1] "GSFTX.Low - GSFTX.Low_YoY - "
## [1] "GSFTX.Close - GSFTX.Close_YoY - "
## [1] "GSFTX.Volume - GSFTX.Volume_YoY - "
## [1] "GSFTX.Volume has zero or negative values. Log series will be zero."
## [1] "GSFTX.Adjusted - GSFTX.Adjusted_YoY - "
## [1] "LFMIX.Open - LFMIX.Open_YoY - "
## [1] "LFMIX.High - LFMIX.High_YoY - "
## [1] "LFMIX.Low - LFMIX.Low_YoY - "
## [1] "LFMIX.Close - LFMIX.Close_YoY - "
## [1] "LFMIX.Volume - LFMIX.Volume_YoY - "
## [1] "LFMIX.Volume has zero or negative values. Log series will be zero."
## [1] "LFMIX.Adjusted - LFMIX.Adjusted_YoY - "
## [1] "LFMCX.Open - LFMCX.Open_YoY - "
## [1] "LFMCX.High - LFMCX.High_YoY - "
## [1] "LFMCX.Low - LFMCX.Low_YoY - "
## [1] "LFMCX.Close - LFMCX.Close_YoY - "
## [1] "LFMCX.Volume - LFMCX.Volume_YoY - "
## [1] "LFMCX.Volume has zero or negative values. Log series will be zero."
## [1] "LFMCX.Adjusted - LFMCX.Adjusted_YoY - "
## [1] "LFMAX.Open - LFMAX.Open_YoY - "
## [1] "LFMAX.High - LFMAX.High_YoY - "
## [1] "LFMAX.Low - LFMAX.Low_YoY - "
## [1] "LFMAX.Close - LFMAX.Close_YoY - "
## [1] "LFMAX.Volume - LFMAX.Volume_YoY - "
## [1] "LFMAX.Volume has zero or negative values. Log series will be zero."
## [1] "LFMAX.Adjusted - LFMAX.Adjusted_YoY - "
## [1] "LCSIX.Open - LCSIX.Open_YoY - "
## [1] "LCSIX.High - LCSIX.High_YoY - "
## [1] "LCSIX.Low - LCSIX.Low_YoY - "
## [1] "LCSIX.Close - LCSIX.Close_YoY - "
## [1] "LCSIX.Volume - LCSIX.Volume_YoY - "
## [1] "LCSIX.Volume has zero or negative values. Log series will be zero."
## [1] "LCSIX.Adjusted - LCSIX.Adjusted_YoY - "
## [1] "BSV.Open - BSV.Open_YoY - "
## [1] "BSV.High - BSV.High_YoY - "
## [1] "BSV.Low - BSV.Low_YoY - "
## [1] "BSV.Close - BSV.Close_YoY - "
## [1] "BSV.Volume - BSV.Volume_YoY - "
## [1] "BSV.Adjusted - BSV.Adjusted_YoY - "
## [1] "VBIRX.Open - VBIRX.Open_YoY - "
## [1] "VBIRX.High - VBIRX.High_YoY - "
## [1] "VBIRX.Low - VBIRX.Low_YoY - "
## [1] "VBIRX.Close - VBIRX.Close_YoY - "
## [1] "VBIRX.Volume - VBIRX.Volume_YoY - "
## [1] "VBIRX.Volume has zero or negative values. Log series will be zero."
## [1] "VBIRX.Adjusted - VBIRX.Adjusted_YoY - "
## [1] "BIV.Open - BIV.Open_YoY - "
## [1] "BIV.High - BIV.High_YoY - "
## [1] "BIV.Low - BIV.Low_YoY - "
## [1] "BIV.Close - BIV.Close_YoY - "
## [1] "BIV.Volume - BIV.Volume_YoY - "
## [1] "BIV.Adjusted - BIV.Adjusted_YoY - "
## [1] "VFSUX.Open - VFSUX.Open_YoY - "
## [1] "VFSUX.High - VFSUX.High_YoY - "
## [1] "VFSUX.Low - VFSUX.Low_YoY - "
## [1] "VFSUX.Close - VFSUX.Close_YoY - "
## [1] "VFSUX.Volume - VFSUX.Volume_YoY - "
## [1] "VFSUX.Volume has zero or negative values. Log series will be zero."
## [1] "VFSUX.Adjusted - VFSUX.Adjusted_YoY - "
## [1] "LTUIX.Open - LTUIX.Open_YoY - "
## [1] "LTUIX.High - LTUIX.High_YoY - "
## [1] "LTUIX.Low - LTUIX.Low_YoY - "
## [1] "LTUIX.Close - LTUIX.Close_YoY - "
## [1] "LTUIX.Volume - LTUIX.Volume_YoY - "
## [1] "LTUIX.Volume has zero or negative values. Log series will be zero."
## [1] "LTUIX.Adjusted - LTUIX.Adjusted_YoY - "
## [1] "PTTPX.Open - PTTPX.Open_YoY - "
## [1] "PTTPX.High - PTTPX.High_YoY - "
## [1] "PTTPX.Low - PTTPX.Low_YoY - "
## [1] "PTTPX.Close - PTTPX.Close_YoY - "
## [1] "PTTPX.Volume - PTTPX.Volume_YoY - "
## [1] "PTTPX.Volume has zero or negative values. Log series will be zero."
## [1] "PTTPX.Adjusted - PTTPX.Adjusted_YoY - "
## [1] "NERYX.Open - NERYX.Open_YoY - "
## [1] "NERYX.High - NERYX.High_YoY - "
## [1] "NERYX.Low - NERYX.Low_YoY - "
## [1] "NERYX.Close - NERYX.Close_YoY - "
## [1] "NERYX.Volume - NERYX.Volume_YoY - "
## [1] "NERYX.Volume has zero or negative values. Log series will be zero."
## [1] "NERYX.Adjusted - NERYX.Adjusted_YoY - "
## [1] "STIGX.Open - STIGX.Open_YoY - "
## [1] "STIGX.High - STIGX.High_YoY - "
## [1] "STIGX.Low - STIGX.Low_YoY - "
## [1] "STIGX.Close - STIGX.Close_YoY - "
## [1] "STIGX.Volume - STIGX.Volume_YoY - "
## [1] "STIGX.Volume has zero or negative values. Log series will be zero."
## [1] "STIGX.Adjusted - STIGX.Adjusted_YoY - "
## [1] "HLGAX.Open - HLGAX.Open_YoY - "
## [1] "HLGAX.High - HLGAX.High_YoY - "
## [1] "HLGAX.Low - HLGAX.Low_YoY - "
## [1] "HLGAX.Close - HLGAX.Close_YoY - "
## [1] "HLGAX.Volume - HLGAX.Volume_YoY - "
## [1] "HLGAX.Volume has zero or negative values. Log series will be zero."
## [1] "HLGAX.Adjusted - HLGAX.Adjusted_YoY - "
## [1] "FTRGX.Open - FTRGX.Open_YoY - "
## [1] "FTRGX.High - FTRGX.High_YoY - "
## [1] "FTRGX.Low - FTRGX.Low_YoY - "
## [1] "FTRGX.Close - FTRGX.Close_YoY - "
## [1] "FTRGX.Volume - FTRGX.Volume_YoY - "
## [1] "FTRGX.Volume has zero or negative values. Log series will be zero."
## [1] "FTRGX.Adjusted - FTRGX.Adjusted_YoY - "
## [1] "THIIX.Open - THIIX.Open_YoY - "
## [1] "THIIX.High - THIIX.High_YoY - "
## [1] "THIIX.Low - THIIX.Low_YoY - "
## [1] "THIIX.Close - THIIX.Close_YoY - "
## [1] "THIIX.Volume - THIIX.Volume_YoY - "
## [1] "THIIX.Volume has zero or negative values. Log series will be zero."
## [1] "THIIX.Adjusted - THIIX.Adjusted_YoY - "
## [1] "PTTRX.Open - PTTRX.Open_YoY - "
## [1] "PTTRX.High - PTTRX.High_YoY - "
## [1] "PTTRX.Low - PTTRX.Low_YoY - "
## [1] "PTTRX.Close - PTTRX.Close_YoY - "
## [1] "PTTRX.Volume - PTTRX.Volume_YoY - "
## [1] "PTTRX.Volume has zero or negative values. Log series will be zero."
## [1] "PTTRX.Adjusted - PTTRX.Adjusted_YoY - "
## [1] "BFIGX.Open - BFIGX.Open_YoY - "
## [1] "BFIGX.High - BFIGX.High_YoY - "
## [1] "BFIGX.Low - BFIGX.Low_YoY - "
## [1] "BFIGX.Close - BFIGX.Close_YoY - "
## [1] "BFIGX.Volume - BFIGX.Volume_YoY - "
## [1] "BFIGX.Volume has zero or negative values. Log series will be zero."
## [1] "BFIGX.Adjusted - BFIGX.Adjusted_YoY - "
## [1] "VTWO.Open - VTWO.Open_YoY - "
## [1] "VTWO.High - VTWO.High_YoY - "
## [1] "VTWO.Low - VTWO.Low_YoY - "
## [1] "VTWO.Close - VTWO.Close_YoY - "
## [1] "VTWO.Volume - VTWO.Volume_YoY - "
## [1] "VTWO.Adjusted - VTWO.Adjusted_YoY - "
## [1] "EIFAX.Open - EIFAX.Open_YoY - "
## [1] "EIFAX.High - EIFAX.High_YoY - "
## [1] "EIFAX.Low - EIFAX.Low_YoY - "
## [1] "EIFAX.Close - EIFAX.Close_YoY - "
## [1] "EIFAX.Volume - EIFAX.Volume_YoY - "
## [1] "EIFAX.Volume has zero or negative values. Log series will be zero."
## [1] "EIFAX.Adjusted - EIFAX.Adjusted_YoY - "
## [1] "ASDAX.Open - ASDAX.Open_YoY - "
## [1] "ASDAX.High - ASDAX.High_YoY - "
## [1] "ASDAX.Low - ASDAX.Low_YoY - "
## [1] "ASDAX.Close - ASDAX.Close_YoY - "
## [1] "ASDAX.Volume - ASDAX.Volume_YoY - "
## [1] "ASDAX.Volume has zero or negative values. Log series will be zero."
## [1] "ASDAX.Adjusted - ASDAX.Adjusted_YoY - "
## [1] "TRBUX.Open - TRBUX.Open_YoY - "
## [1] "TRBUX.High - TRBUX.High_YoY - "
## [1] "TRBUX.Low - TRBUX.Low_YoY - "
## [1] "TRBUX.Close - TRBUX.Close_YoY - "
## [1] "TRBUX.Volume - TRBUX.Volume_YoY - "
## [1] "TRBUX.Volume has zero or negative values. Log series will be zero."
## [1] "TRBUX.Adjusted - TRBUX.Adjusted_YoY - "
## [1] "PRWCX.Open - PRWCX.Open_YoY - "
## [1] "PRWCX.High - PRWCX.High_YoY - "
## [1] "PRWCX.Low - PRWCX.Low_YoY - "
## [1] "PRWCX.Close - PRWCX.Close_YoY - "
## [1] "PRWCX.Volume - PRWCX.Volume_YoY - "
## [1] "PRWCX.Volume has zero or negative values. Log series will be zero."
## [1] "PRWCX.Adjusted - PRWCX.Adjusted_YoY - "
## [1] "ADOZX.Open - ADOZX.Open_YoY - "
## [1] "ADOZX.High - ADOZX.High_YoY - "
## [1] "ADOZX.Low - ADOZX.Low_YoY - "
## [1] "ADOZX.Close - ADOZX.Close_YoY - "
## [1] "ADOZX.Volume - ADOZX.Volume_YoY - "
## [1] "ADOZX.Volume has zero or negative values. Log series will be zero."
## [1] "ADOZX.Adjusted - ADOZX.Adjusted_YoY - "
## [1] "MERFX.Open - MERFX.Open_YoY - "
## [1] "MERFX.High - MERFX.High_YoY - "
## [1] "MERFX.Low - MERFX.Low_YoY - "
## [1] "MERFX.Close - MERFX.Close_YoY - "
## [1] "MERFX.Volume - MERFX.Volume_YoY - "
## [1] "MERFX.Volume has zero or negative values. Log series will be zero."
## [1] "MERFX.Adjusted - MERFX.Adjusted_YoY - "
## [1] "CMNIX.Open - CMNIX.Open_YoY - "
## [1] "CMNIX.High - CMNIX.High_YoY - "
## [1] "CMNIX.Low - CMNIX.Low_YoY - "
## [1] "CMNIX.Close - CMNIX.Close_YoY - "
## [1] "CMNIX.Volume - CMNIX.Volume_YoY - "
## [1] "CMNIX.Volume has zero or negative values. Log series will be zero."
## [1] "CMNIX.Adjusted - CMNIX.Adjusted_YoY - "
## [1] "CIHEX.Open - CIHEX.Open_YoY - "
## [1] "CIHEX.High - CIHEX.High_YoY - "
## [1] "CIHEX.Low - CIHEX.Low_YoY - "
## [1] "CIHEX.Close - CIHEX.Close_YoY - "
## [1] "CIHEX.Volume - CIHEX.Volume_YoY - "
## [1] "CIHEX.Volume has zero or negative values. Log series will be zero."
## [1] "CIHEX.Adjusted - CIHEX.Adjusted_YoY - "
## [1] "IMPCH - IMPCH_YoY - U.S. Imports of Goods by Customs\nBasis from China (Monthly, NSA)"
## [1] "EXPCH - EXPCH_YoY - U.S. Exports of Goods by F.A.S.\nBasis to China, Mainland (Monthly, NSA)"
## [1] "IMPMX - IMPMX_YoY - U.S. Imports of Goods by Customs\nBasis from Mexico (Monthly, NSA)"
## [1] "EXPMX - EXPMX_YoY - U.S. Exports of Goods by F.A.S.\nBasis to Mexico (Monthly, NSA)"
## [1] "HSN1FNSA - HSN1FNSA_YoY - New One Family Houses Sold: United States (Monthly, NSA)"
## [1] "HNFSUSNSA - HNFSUSNSA_YoY - New One Family Houses for Sale in the United States (Monthly, NSA)"
## [1] "BUSLOANS - BUSLOANS_YoY - Commercial and Industrial Loans,\n All Commercial Banks (Monthly, SA)"
## [1] "TOTCI - TOTCI_YoY - Commercial and Industrial Loans,\n All Commercial Banks (Weekly, SA)"
## [1] "BUSLOANSNSA - BUSLOANSNSA_YoY - Commercial and Industrial Loans,\n All Commercial Banks (Monthly, NSA)"
## [1] "REALLNNSA - REALLNNSA_YoY - Real Estate Loans,\nAll Commercial Banks (Monthly, NSA)"
## [1] "REALLN - REALLN_YoY - Real Estate Loans,\nAll Commercial Banks (Monthly, SA)"
## [1] "RELACBW027NBOG - RELACBW027NBOG_YoY - Real Estate Loans,\nAll Commercial Banks (Weekly, NSA)"
## [1] "RELACBW027SBOG - RELACBW027SBOG_YoY - Real Estate Loans,\nAll Commercial Banks (Weekly, SA)"
## [1] "RREACBM027NBOG - RREACBM027NBOG_YoY - Real Estate Loans: Residential Real Estate Loans,\nAll Commercial Banks (Monthly, NSA)"
## [1] "RREACBM027SBOG - RREACBM027SBOG_YoY - Real Estate Loans: Residential Real Estate Loans,\nAll Commercial Banks (Monthly, SA)"
## [1] "RREACBW027SBOG - RREACBW027SBOG_YoY - Real Estate Loans: Residential Real Estate Loans,\nAll Commercial Banks (Weekly, SA)"
## [1] "RREACBW027NBOG - RREACBW027NBOG_YoY - Real Estate Loans: Residential Real Estate Loans,\nAll Commercial Banks (Weekly, NSA)"
## [1] "MORTGAGE30US - MORTGAGE30US_YoY - 30-Year Fixed Rate Mortgage Average in the United States"
## [1] "CONSUMERNSA - CONSUMERNSA_YoY - Consumer Loans, All Commercial Banks"
## [1] "TOTLLNSA - TOTLLNSA_YoY - Loans and Leases in Bank Credit,\nAll Commercial Banks"
## [1] "DPSACBW027SBOG - DPSACBW027SBOG_YoY - Deposits, All Commercial Banks"
## [1] "DRCLACBS - DRCLACBS_YoY - Delinquency Rate on Consumer Loans,\nAll Commercial Banks, SA"
## [1] "TOTCINSA - TOTCINSA_YoY - Commercial and Industrial Loans,\nAll Commercial Banks (Weekly, NSA)"
## [1] "SRPSABSNNCB - SRPSABSNNCB_YoY - Nonfinancial corporate business;\nsecurity repurchase agreements;\nasset, Level (NSA)"
## [1] "SRPSABSNNCB has zero or negative values. Log series will be zero."
## [1] "ASTLL - ASTLL_YoY - All sectors; total loans; liability, Level (NSA)"
## [1] "FBDILNECA - FBDILNECA_YoY - Domestic financial sectors; depository institution\nloans n.e.c.; asset, Level (NSA)"
## [1] "ASOLAL - ASOLAL_YoY - All sectors; other loans and advances;\nliability, Level (NSA)"
## [1] "ASTMA - ASTMA_YoY - All sectors; total mortgages; asset, Level (NSA)"
## [1] "ASHMA - ASHMA_YoY - All sectors; home mortgages; asset, Level (NSA)"
## [1] "ASMRMA - ASMRMA_YoY - All sectors; multifamily residential\nmortgages; asset, Level (NSA)"
## [1] "ASCMA - ASCMA_YoY - All sectors; commercial mortgages;\nasset, Level  (NSA)"
## [1] "ASFMA - ASFMA_YoY - All sectors; farm mortgages;\nasset, Level (NSA)"
## [1] "CCLBSHNO - CCLBSHNO_YoY - Households and nonprofit organizations;\nconsumer credit; liability, Level (NSA)"
## [1] "FBDSILQ027S - FBDSILQ027S_YoY - Domestic financial sectors\ndebt securities; liability, Level (NSA)"
## [1] "FBLL - FBLL_YoY - Domestic financial sectors\nloans; liability, Level (NSA)"
## [1] "NCBDBIQ027S - NCBDBIQ027S_YoY - Nonfinancial corporate\nbusiness; debt securities; liability, Level"
## [1] "DGS10 - DGS10_YoY - 10-Year Treasury Constant Maturity Rate"
## [1] "TNX.Open - TNX.Open_YoY - "
## [1] "TNX.High - TNX.High_YoY - "
## [1] "TNX.Low - TNX.Low_YoY - "
## [1] "TNX.Close - TNX.Close_YoY - "
## [1] "TNX.Volume - TNX.Volume_YoY - "
## [1] "TNX.Volume has zero or negative values. Log series will be zero."
## [1] "TNX.Adjusted - TNX.Adjusted_YoY - "
## [1] "CLF.Open - CLF.Open_YoY - "
## [1] "CLF.Open has zero or negative values. Log series will be zero."
## [1] "CLF.High - CLF.High_YoY - "
## [1] "CLF.Low - CLF.Low_YoY - "
## [1] "CLF.Low has zero or negative values. Log series will be zero."
## [1] "CLF.Close - CLF.Close_YoY - "
## [1] "CLF.Close has zero or negative values. Log series will be zero."
## [1] "CLF.Volume - CLF.Volume_YoY - "
## [1] "CLF.Volume has zero or negative values. Log series will be zero."
## [1] "CLF.Adjusted - CLF.Adjusted_YoY - "
## [1] "CLF.Adjusted has zero or negative values. Log series will be zero."
## [1] "DGS30 - DGS30_YoY - 10-Year Treasury Constant Maturity Rate"
## [1] "DGS1 - DGS1_YoY - 1-Year Treasury Constant Maturity Rate"
## [1] "DGS2 - DGS2_YoY - 2-Year Treasury Constant Maturity Rate"
## [1] "TB3MS - TB3MS_YoY - 3-Month Treasury Bill: Secondary Market Rate (Monthly)"
## [1] "DTB3 - DTB3_YoY - 3-Month Treasury Bill: Secondary Market Rate (Daily)"
## [1] "DTB3 has zero or negative values. Log series will be zero."
## [1] "IRX.Open - IRX.Open_YoY - "
## [1] "IRX.Open has zero or negative values. Log series will be zero."
## [1] "IRX.High - IRX.High_YoY - "
## [1] "IRX.High has zero or negative values. Log series will be zero."
## [1] "IRX.Low - IRX.Low_YoY - "
## [1] "IRX.Low has zero or negative values. Log series will be zero."
## [1] "IRX.Close - IRX.Close_YoY - "
## [1] "IRX.Close has zero or negative values. Log series will be zero."
## [1] "IRX.Volume - IRX.Volume_YoY - "
## [1] "IRX.Volume has zero or negative values. Log series will be zero."
## [1] "IRX.Adjusted - IRX.Adjusted_YoY - "
## [1] "IRX.Adjusted has zero or negative values. Log series will be zero."
## [1] "DCOILWTICO - DCOILWTICO_YoY - Crude Oil Prices: West Texas Intermediate (WTI)\nCushing, Oklahoma"
## [1] "DCOILWTICO has zero or negative values. Log series will be zero."
## [1] "DCOILBRENTEU - DCOILBRENTEU_YoY - Crude Oil Prices: Brent - Europe"
## [1] "NEWORDER - NEWORDER_YoY - Manufacturers' New Orders: Nondefense Capital Goods Excluding Aircraft"
## [1] "ALTSALES - ALTSALES_YoY - Light Weight Vehicle Sales: Autos and Light Trucks"
## [1] "ICSA - ICSA_YoY - Initial Jobless Claims"
## [1] "GSPC.Open - GSPC.Open_YoY - "
## [1] "GSPC.High - GSPC.High_YoY - "
## [1] "GSPC.Low - GSPC.Low_YoY - "
## [1] "GSPC.Close - GSPC.Close_YoY - "
## [1] "GSPC.Volume - GSPC.Volume_YoY - "
## [1] "GSPC.Adjusted - GSPC.Adjusted_YoY - "
## [1] "RLG.Open - RLG.Open_YoY - "
## [1] "RLG.High - RLG.High_YoY - "
## [1] "RLG.Low - RLG.Low_YoY - "
## [1] "RLG.Close - RLG.Close_YoY - "
## [1] "RLG.Volume - RLG.Volume_YoY - "
## [1] "RLG.Volume has zero or negative values. Log series will be zero."
## [1] "RLG.Adjusted - RLG.Adjusted_YoY - "
## [1] "DJI.Open - DJI.Open_YoY - "
## [1] "DJI.High - DJI.High_YoY - "
## [1] "DJI.Low - DJI.Low_YoY - "
## [1] "DJI.Close - DJI.Close_YoY - "
## [1] "DJI.Volume - DJI.Volume_YoY - "
## [1] "DJI.Adjusted - DJI.Adjusted_YoY - "
## [1] "STOXX50E.Open - STOXX50E.Open_YoY - "
## [1] "STOXX50E.High - STOXX50E.High_YoY - "
## [1] "STOXX50E.Low - STOXX50E.Low_YoY - "
## [1] "STOXX50E.Close - STOXX50E.Close_YoY - "
## [1] "STOXX50E.Volume - STOXX50E.Volume_YoY - "
## [1] "STOXX50E.Volume has zero or negative values. Log series will be zero."
## [1] "STOXX50E.Adjusted - STOXX50E.Adjusted_YoY - "
## [1] "EFA.Open - EFA.Open_YoY - "
## [1] "EFA.High - EFA.High_YoY - "
## [1] "EFA.Low - EFA.Low_YoY - "
## [1] "EFA.Close - EFA.Close_YoY - "
## [1] "EFA.Volume - EFA.Volume_YoY - "
## [1] "EFA.Adjusted - EFA.Adjusted_YoY - "
## [1] "GDP - GDP_YoY - Gross Domestic Product"
## [1] "FNDEFX - FNDEFX_YoY - Federal Government: Nondefense\nConsumption Expenditures and Gross Investment (SA, Annual Rate)"
## [1] "FDEFX - FDEFX_YoY - Federal Government: National Defense\nConsumption Expenditures and Gross Investment (SA, Annual Rate)"
## [1] "GDPNOW - GDPNOW_YoY - Fed Atlanta GDPNow"
## [1] "GDPNOW has zero or negative values. Log series will be zero."
## [1] "GDPC1 - GDPC1_YoY - Real Gross Domestic Product"
## [1] "GDPDEF - GDPDEF_YoY - Gross Domestic Product: Implicit Price Deflator"
## [1] "VIG.Open - VIG.Open_YoY - "
## [1] "VIG.High - VIG.High_YoY - "
## [1] "VIG.Low - VIG.Low_YoY - "
## [1] "VIG.Close - VIG.Close_YoY - "
## [1] "VIG.Volume - VIG.Volume_YoY - "
## [1] "VIG.Adjusted - VIG.Adjusted_YoY - "
## [1] "WLRRAL - WLRRAL_YoY - Liabilities and Capital:\nLiabilities: Reverse Repurchase Agreements:\nWednesday Level (NSA)"
## [1] "FEDFUNDS - FEDFUNDS_YoY - Effective Federal Funds Rate"
## [1] "GPDI - GPDI_YoY - Gross Private Domestic Investment"
## [1] "W790RC1Q027SBEA - W790RC1Q027SBEA_YoY - Net domestic investment: Private: Domestic busines"
## [1] "W790RC1Q027SBEA has zero or negative values. Log series will be zero."
## [1] "MZMV - MZMV_YoY -  Velocity of MZM Money Stock"
## [1] "M1 - M1_YoY - M1 Money Stock"
## [1] "M2 - M2_YoY - M2 Money Stock"
## [1] "OPHNFB - OPHNFB_YoY - Nonfarm Business Sector: Real Output Per Hour of All Persons"
## [1] "IPMAN - IPMAN_YoY - Industrial Production: Manufacturing (NAICS)"
## [1] "IWD.Open - IWD.Open_YoY - "
## [1] "IWD.High - IWD.High_YoY - "
## [1] "IWD.Low - IWD.Low_YoY - "
## [1] "IWD.Close - IWD.Close_YoY - "
## [1] "IWD.Volume - IWD.Volume_YoY - "
## [1] "IWD.Adjusted - IWD.Adjusted_YoY - "
## [1] "GS5 - GS5_YoY - 5-Year Treasury Constant Maturity Rate"
## [1] "PSAVERT - PSAVERT_YoY - Personal Saving Rate"
## [1] "VIXCLS - VIXCLS_YoY - CBOE Volatility Index"
## [1] "VXX.Open - VXX.Open_YoY - "
## [1] "VXX.High - VXX.High_YoY - "
## [1] "VXX.Low - VXX.Low_YoY - "
## [1] "VXX.Close - VXX.Close_YoY - "
## [1] "VXX.Volume - VXX.Volume_YoY - "
## [1] "VXX.Volume has zero or negative values. Log series will be zero."
## [1] "VXX.Adjusted - VXX.Adjusted_YoY - "
## [1] "HOUST1F - HOUST1F_YoY - Privately Owned Housing Starts: 1-Unit Structures"
## [1] "GFDEBTN - GFDEBTN_YoY - Federal Debt: Total Public Debt"
## [1] "HOUST - HOUST_YoY - Housing Starts: Total: New Privately\nOwned Housing Units Started"
## [1] "MSPUS - MSPUS_YoY - Median Sales Price of\nHouses Sold for the United States"
## [1] "UMDMNO - UMDMNO_YoY - Manufacturers' New Orders: Durable Goods (NSA)"
## [1] "DGORDER - DGORDER_YoY - Manufacturers' New Orders: Durable Goods (SA)"
## [1] "CSUSHPINSA - CSUSHPINSA_YoY - S&P/Case-Shiller U.S. National Home Price Index (NSA)"
## [1] "GFDEGDQ188S - GFDEGDQ188S_YoY - Federal Debt: Total Public Debt as Percent of Gross Domestic Product"
## [1] "FYFSD - FYFSD_YoY - Federal Surplus or Deficit"
## [1] "FYFSD has zero or negative values. Log series will be zero."
## [1] "FYFSGDA188S - FYFSGDA188S_YoY - Federal Surplus or Deficit [-] as Percent of Gross Domestic Product"
## [1] "FYFSGDA188S has zero or negative values. Log series will be zero."
## [1] "GOLDAMGBD228NLBM - GOLDAMGBD228NLBM_YoY - Gold Fixing Price 10:30 A.M. (London time) \n in London Bullion Market"
## [1] "GDX.Open - GDX.Open_YoY - "
## [1] "GDX.High - GDX.High_YoY - "
## [1] "GDX.Low - GDX.Low_YoY - "
## [1] "GDX.Close - GDX.Close_YoY - "
## [1] "GDX.Volume - GDX.Volume_YoY - "
## [1] "GDX.Adjusted - GDX.Adjusted_YoY - "
## [1] "XLE.Open - XLE.Open_YoY - "
## [1] "XLE.High - XLE.High_YoY - "
## [1] "XLE.Low - XLE.Low_YoY - "
## [1] "XLE.Close - XLE.Close_YoY - "
## [1] "XLE.Volume - XLE.Volume_YoY - "
## [1] "XLE.Adjusted - XLE.Adjusted_YoY - "
## [1] "GSG.Open - GSG.Open_YoY - "
## [1] "GSG.High - GSG.High_YoY - "
## [1] "GSG.Low - GSG.Low_YoY - "
## [1] "GSG.Close - GSG.Close_YoY - "
## [1] "GSG.Volume - GSG.Volume_YoY - "
## [1] "GSG.Adjusted - GSG.Adjusted_YoY - "
## [1] "WALCL - WALCL_YoY - All Federal Reserve Banks: Total Assets"
## [1] "OUTMS - OUTMS_YoY - Manufacturing Sector: Real Output"
## [1] "MANEMP - MANEMP_YoY - All Employees: Manufacturing"
## [1] "PRS30006163 - PRS30006163_YoY - Manufacturing Sector: Real Output Per Person"
## [1] "BAMLC0A3CA - BAMLC0A3CA_YoY - ICE BofAML US Corporate A Option-Adjusted Spread"
## [1] "AAA - AAA_YoY - Moody's Seasoned Aaa Corporate Bond Yield"
## [1] "SOFR - SOFR_YoY - Secured Overnight Financing Rate"
## [1] "SOFRVOL - SOFRVOL_YoY - Secured Overnight Financing Volume"
## [1] "SOFR99 - SOFR99_YoY - Secured Overnight Financing Rate:\n99th Percentile"
## [1] "SOFR75 - SOFR75_YoY - Secured Overnight Financing Rate:\n75th Percentile"
## [1] "SOFR25 - SOFR25_YoY - Secured Overnight Financing Rate:\n25th Percentile"
## [1] "SOFR25 has zero or negative values. Log series will be zero."
## [1] "SOFR1 - SOFR1_YoY - Secured Overnight Financing Rate:\n1st Percentile"
## [1] "SOFR1 has zero or negative values. Log series will be zero."
## [1] "OBFR - OBFR_YoY - Overnight Bank Funding Rate"
## [1] "OBFR99 - OBFR99_YoY - Overnight Bank Funding Rate:\n99th Percentile"
## [1] "OBFR75 - OBFR75_YoY - Overnight Bank Funding Rate:\n75th Percentile"
## [1] "OBFR25 - OBFR25_YoY - Overnight Bank Funding Rate:\n25th Percentile"
## [1] "OBFR1 - OBFR1_YoY - Overnight Bank Funding Rate:\n1st Percentile"
## [1] "RPONTSYD - RPONTSYD_YoY - Overnight Repurchase Agreements:\nTreasury Securities Purchased by\nthe Federal Reserve in the Temporary\nOpen Market Operations "
## [1] "RPONTSYD has zero or negative values. Log series will be zero."
## [1] "IOER - IOER_YoY - Interest Rate on Excess Reserves"
## [1] "WRESBAL - WRESBAL_YoY - Reserve Balances with Federal Reserve Banks"
## [1] "EXCSRESNW - EXCSRESNW_YoY - Excess Reserves of Depository Institutions"
## [1] "ECBASSETS - ECBASSETS_YoY - Central Bank Assets for Euro Area (11-19 Countries)"
## [1] "EUNNGDP - EUNNGDP_YoY -  Gross Domestic Product (Euro/ECU series) for Euro Area (19 Countries)"
## [1] "CEU0600000007 - CEU0600000007_YoY - Average Weekly Hours of Production \n and Nonsupervisory Employees: Goods-Producing"
## [1] "USD1MTD156N - USD1MTD156N_YoY - 1-Month London Interbank Offered Rate (LIBOR), based on U.S. Dollar"
## [1] "CURRENCY - CURRENCY_YoY - Currency Component of M1 (Seasonally Adjusted)"
## [1] "WCURRNS - WCURRNS_YoY - Currency Component of M1"
## [1] "BOGMBASE - BOGMBASE_YoY - Monetary Base; Total"
## [1] "PRS88003193 - PRS88003193_YoY - Nonfinancial Corporations Sector: Unit Profits"
## [1] "PPIACO - PPIACO_YoY - Producer Price Index for All Commodities"
## [1] "PCUOMFGOMFG - PCUOMFGOMFG_YoY - Producer Price Index by Industry: Total Manufacturing Industries"
## [1] "POPTHM - POPTHM_YoY - Population (U.S.)"
## [2] "POPTHM - POPTHM_YoY - Population (U.S.)"
## [1] "POPTHM.1 - POPTHM.1_YoY - "
## [1] "CLF16OV - CLF16OV_YoY - Civilian Labor Force Level, SA "
## [1] "LNU01000000 - LNU01000000_YoY - Civilian Labor Force Level, NSA"
## [1] "LNU03000000 - LNU03000000_YoY - Unemployment Level (NSA)"
## [1] "UNEMPLOY - UNEMPLOY_YoY - Unemployment Level, seasonally adjusted"
## [1] "RSAFS - RSAFS_YoY - Advance Retail Sales: Retail and Food Services"
## [1] "FRGSHPUSM649NCIS - FRGSHPUSM649NCIS_YoY - Cass Freight Index: Shipments"
## [1] "BOPGTB - BOPGTB_YoY - Trade Balance: Goods,\nBalance of Payments Basis (SA)"
## [1] "BOPGTB has zero or negative values. Log series will be zero."
## [1] "TERMCBPER24NS - TERMCBPER24NS_YoY - Finance Rate on Personal Loans at\nCommercial Banks, 24 Month Loan"
## [1] "A065RC1A027NBEA - A065RC1A027NBEA_YoY - Personal income (NSA)"
## [1] "PI - PI_YoY - Personal income (SA)"
## [1] "PCE - PCE_YoY - Personal Consumption\nExpenditures (SA)"
## [1] "A053RC1Q027SBEA - A053RC1Q027SBEA_YoY - National income: Corporate\nprofits before tax (without IVA and CCAdj)"
## [1] "CPROFIT - CPROFIT_YoY - Corporate Profits with Inventory\nValuation Adjustment (IVA) and\nCapital Consumption Adjustment (CCAdj)"
## [1] "SPY.Open - SPY.Open_YoY - "
## [1] "SPY.High - SPY.High_YoY - "
## [1] "SPY.Low - SPY.Low_YoY - "
## [1] "SPY.Close - SPY.Close_YoY - "
## [1] "SPY.Volume - SPY.Volume_YoY - "
## [1] "SPY.Adjusted - SPY.Adjusted_YoY - "
## [1] "MDY.Open - MDY.Open_YoY - "
## [1] "MDY.High - MDY.High_YoY - "
## [1] "MDY.Low - MDY.Low_YoY - "
## [1] "MDY.Close - MDY.Close_YoY - "
## [1] "MDY.Volume - MDY.Volume_YoY - "
## [1] "MDY.Adjusted - MDY.Adjusted_YoY - "
## [1] "EES.Open - EES.Open_YoY - "
## [1] "EES.High - EES.High_YoY - "
## [1] "EES.Low - EES.Low_YoY - "
## [1] "EES.Close - EES.Close_YoY - "
## [1] "EES.Volume - EES.Volume_YoY - "
## [1] "EES.Volume has zero or negative values. Log series will be zero."
## [1] "EES.Adjusted - EES.Adjusted_YoY - "
## [1] "IJR.Open - IJR.Open_YoY - "
## [1] "IJR.High - IJR.High_YoY - "
## [1] "IJR.Low - IJR.Low_YoY - "
## [1] "IJR.Close - IJR.Close_YoY - "
## [1] "IJR.Volume - IJR.Volume_YoY - "
## [1] "IJR.Adjusted - IJR.Adjusted_YoY - "
## [1] "VGSTX.Open - VGSTX.Open_YoY - "
## [1] "VGSTX.High - VGSTX.High_YoY - "
## [1] "VGSTX.Low - VGSTX.Low_YoY - "
## [1] "VGSTX.Close - VGSTX.Close_YoY - "
## [1] "VGSTX.Volume - VGSTX.Volume_YoY - "
## [1] "VGSTX.Volume has zero or negative values. Log series will be zero."
## [1] "VGSTX.Adjusted - VGSTX.Adjusted_YoY - "
## [1] "VFINX.Open - VFINX.Open_YoY - "
## [1] "VFINX.High - VFINX.High_YoY - "
## [1] "VFINX.Low - VFINX.Low_YoY - "
## [1] "VFINX.Close - VFINX.Close_YoY - "
## [1] "VFINX.Volume - VFINX.Volume_YoY - "
## [1] "VFINX.Volume has zero or negative values. Log series will be zero."
## [1] "VFINX.Adjusted - VFINX.Adjusted_YoY - "
## [1] "VOE.Open - VOE.Open_YoY - "
## [1] "VOE.High - VOE.High_YoY - "
## [1] "VOE.Low - VOE.Low_YoY - "
## [1] "VOE.Close - VOE.Close_YoY - "
## [1] "VOE.Volume - VOE.Volume_YoY - "
## [1] "VOE.Adjusted - VOE.Adjusted_YoY - "
## [1] "VOT.Open - VOT.Open_YoY - "
## [1] "VOT.High - VOT.High_YoY - "
## [1] "VOT.Low - VOT.Low_YoY - "
## [1] "VOT.Close - VOT.Close_YoY - "
## [1] "VOT.Volume - VOT.Volume_YoY - "
## [1] "VOT.Adjusted - VOT.Adjusted_YoY - "
## [1] "TMFGX.Open - TMFGX.Open_YoY - "
## [1] "TMFGX.High - TMFGX.High_YoY - "
## [1] "TMFGX.Low - TMFGX.Low_YoY - "
## [1] "TMFGX.Close - TMFGX.Close_YoY - "
## [1] "TMFGX.Volume - TMFGX.Volume_YoY - "
## [1] "TMFGX.Volume has zero or negative values. Log series will be zero."
## [1] "TMFGX.Adjusted - TMFGX.Adjusted_YoY - "
## [1] "IWM.Open - IWM.Open_YoY - "
## [1] "IWM.High - IWM.High_YoY - "
## [1] "IWM.Low - IWM.Low_YoY - "
## [1] "IWM.Close - IWM.Close_YoY - "
## [1] "IWM.Volume - IWM.Volume_YoY - "
## [1] "IWM.Adjusted - IWM.Adjusted_YoY - "
## [1] "ONEQ.Open - ONEQ.Open_YoY - "
## [1] "ONEQ.High - ONEQ.High_YoY - "
## [1] "ONEQ.Low - ONEQ.Low_YoY - "
## [1] "ONEQ.Close - ONEQ.Close_YoY - "
## [1] "ONEQ.Volume - ONEQ.Volume_YoY - "
## [1] "ONEQ.Adjusted - ONEQ.Adjusted_YoY - "
## [1] "HAINX.Open - HAINX.Open_YoY - "
## [1] "HAINX.High - HAINX.High_YoY - "
## [1] "HAINX.Low - HAINX.Low_YoY - "
## [1] "HAINX.Close - HAINX.Close_YoY - "
## [1] "HAINX.Volume - HAINX.Volume_YoY - "
## [1] "HAINX.Volume has zero or negative values. Log series will be zero."
## [1] "HAINX.Adjusted - HAINX.Adjusted_YoY - "
## [1] "VEU.Open - VEU.Open_YoY - "
## [1] "VEU.High - VEU.High_YoY - "
## [1] "VEU.Low - VEU.Low_YoY - "
## [1] "VEU.Close - VEU.Close_YoY - "
## [1] "VEU.Volume - VEU.Volume_YoY - "
## [1] "VEU.Adjusted - VEU.Adjusted_YoY - "
## [1] "BIL.Open - BIL.Open_YoY - "
## [1] "BIL.High - BIL.High_YoY - "
## [1] "BIL.Low - BIL.Low_YoY - "
## [1] "BIL.Close - BIL.Close_YoY - "
## [1] "BIL.Volume - BIL.Volume_YoY - "
## [1] "BIL.Adjusted - BIL.Adjusted_YoY - "
## [1] "IVOO.Open - IVOO.Open_YoY - "
## [1] "IVOO.High - IVOO.High_YoY - "
## [1] "IVOO.Low - IVOO.Low_YoY - "
## [1] "IVOO.Close - IVOO.Close_YoY - "
## [1] "IVOO.Volume - IVOO.Volume_YoY - "
## [1] "IVOO.Volume has zero or negative values. Log series will be zero."
## [1] "IVOO.Adjusted - IVOO.Adjusted_YoY - "
## [1] "VO.Open - VO.Open_YoY - "
## [1] "VO.High - VO.High_YoY - "
## [1] "VO.Low - VO.Low_YoY - "
## [1] "VO.Close - VO.Close_YoY - "
## [1] "VO.Volume - VO.Volume_YoY - "
## [1] "VO.Volume has zero or negative values. Log series will be zero."
## [1] "VO.Adjusted - VO.Adjusted_YoY - "
## [1] "CZA.Open - CZA.Open_YoY - "
## [1] "CZA.High - CZA.High_YoY - "
## [1] "CZA.Low - CZA.Low_YoY - "
## [1] "CZA.Close - CZA.Close_YoY - "
## [1] "CZA.Volume - CZA.Volume_YoY - "
## [1] "CZA.Volume has zero or negative values. Log series will be zero."
## [1] "CZA.Adjusted - CZA.Adjusted_YoY - "
## [1] "VYM.Open - VYM.Open_YoY - "
## [1] "VYM.High - VYM.High_YoY - "
## [1] "VYM.Low - VYM.Low_YoY - "
## [1] "VYM.Close - VYM.Close_YoY - "
## [1] "VYM.Volume - VYM.Volume_YoY - "
## [1] "VYM.Adjusted - VYM.Adjusted_YoY - "
## [1] "ACWI.Open - ACWI.Open_YoY - "
## [1] "ACWI.High - ACWI.High_YoY - "
## [1] "ACWI.Low - ACWI.Low_YoY - "
## [1] "ACWI.Close - ACWI.Close_YoY - "
## [1] "ACWI.Volume - ACWI.Volume_YoY - "
## [1] "ACWI.Adjusted - ACWI.Adjusted_YoY - "
## [1] "SLY.Open - SLY.Open_YoY - "
## [1] "SLY.High - SLY.High_YoY - "
## [1] "SLY.Low - SLY.Low_YoY - "
## [1] "SLY.Close - SLY.Close_YoY - "
## [1] "SLY.Volume - SLY.Volume_YoY - "
## [1] "SLY.Volume has zero or negative values. Log series will be zero."
## [1] "SLY.Adjusted - SLY.Adjusted_YoY - "
## [1] "QQQ.Open - QQQ.Open_YoY - "
## [1] "QQQ.High - QQQ.High_YoY - "
## [1] "QQQ.Low - QQQ.Low_YoY - "
## [1] "QQQ.Close - QQQ.Close_YoY - "
## [1] "QQQ.Volume - QQQ.Volume_YoY - "
## [1] "QQQ.Adjusted - QQQ.Adjusted_YoY - "
## [1] "HYMB.Open - HYMB.Open_YoY - "
## [1] "HYMB.High - HYMB.High_YoY - "
## [1] "HYMB.Low - HYMB.Low_YoY - "
## [1] "HYMB.Close - HYMB.Close_YoY - "
## [1] "HYMB.Volume - HYMB.Volume_YoY - "
## [1] "HYMB.Volume has zero or negative values. Log series will be zero."
## [1] "HYMB.Adjusted - HYMB.Adjusted_YoY - "
## [1] "GOLD.Open - GOLD.Open_YoY - "
## [1] "GOLD.Open has zero or negative values. Log series will be zero."
## [1] "GOLD.High - GOLD.High_YoY - "
## [1] "GOLD.Low - GOLD.Low_YoY - "
## [1] "GOLD.Close - GOLD.Close_YoY - "
## [1] "GOLD.Volume - GOLD.Volume_YoY - "
## [1] "GOLD.Volume has zero or negative values. Log series will be zero."
## [1] "GOLD.Adjusted - GOLD.Adjusted_YoY - "
## [1] "BKR.Open - BKR.Open_YoY - "
## [1] "BKR.Open has zero or negative values. Log series will be zero."
## [1] "BKR.High - BKR.High_YoY - "
## [1] "BKR.Low - BKR.Low_YoY - "
## [1] "BKR.Close - BKR.Close_YoY - "
## [1] "BKR.Volume - BKR.Volume_YoY - "
## [1] "BKR.Volume has zero or negative values. Log series will be zero."
## [1] "BKR.Adjusted - BKR.Adjusted_YoY - "
## [1] "SLB.Open - SLB.Open_YoY - "
## [1] "SLB.High - SLB.High_YoY - "
## [1] "SLB.Low - SLB.Low_YoY - "
## [1] "SLB.Close - SLB.Close_YoY - "
## [1] "SLB.Volume - SLB.Volume_YoY - "
## [1] "SLB.Adjusted - SLB.Adjusted_YoY - "
## [1] "HAL.Open - HAL.Open_YoY - "
## [1] "HAL.Open has zero or negative values. Log series will be zero."
## [1] "HAL.High - HAL.High_YoY - "
## [1] "HAL.Low - HAL.Low_YoY - "
## [1] "HAL.Close - HAL.Close_YoY - "
## [1] "HAL.Volume - HAL.Volume_YoY - "
## [1] "HAL.Volume has zero or negative values. Log series will be zero."
## [1] "HAL.Adjusted - HAL.Adjusted_YoY - "
## [1] "IP.Open - IP.Open_YoY - "
## [1] "IP.Open has zero or negative values. Log series will be zero."
## [1] "IP.High - IP.High_YoY - "
## [1] "IP.Low - IP.Low_YoY - "
## [1] "IP.Close - IP.Close_YoY - "
## [1] "IP.Volume - IP.Volume_YoY - "
## [1] "IP.Adjusted - IP.Adjusted_YoY - "
## [1] "PKG.Open - PKG.Open_YoY - "
## [1] "PKG.High - PKG.High_YoY - "
## [1] "PKG.Low - PKG.Low_YoY - "
## [1] "PKG.Close - PKG.Close_YoY - "
## [1] "PKG.Volume - PKG.Volume_YoY - "
## [1] "PKG.Adjusted - PKG.Adjusted_YoY - "
## [1] "UPS.Open - UPS.Open_YoY - "
## [1] "UPS.High - UPS.High_YoY - "
## [1] "UPS.Low - UPS.Low_YoY - "
## [1] "UPS.Close - UPS.Close_YoY - "
## [1] "UPS.Volume - UPS.Volume_YoY - "
## [1] "UPS.Adjusted - UPS.Adjusted_YoY - "
## [1] "FDX.Open - FDX.Open_YoY - "
## [1] "FDX.High - FDX.High_YoY - "
## [1] "FDX.Low - FDX.Low_YoY - "
## [1] "FDX.Close - FDX.Close_YoY - "
## [1] "FDX.Volume - FDX.Volume_YoY - "
## [1] "FDX.Adjusted - FDX.Adjusted_YoY - "
## [1] "T.Open - T.Open_YoY - "
## [1] "T.Open has zero or negative values. Log series will be zero."
## [1] "T.High - T.High_YoY - "
## [1] "T.Low - T.Low_YoY - "
## [1] "T.Close - T.Close_YoY - "
## [1] "T.Volume - T.Volume_YoY - "
## [1] "T.Adjusted - T.Adjusted_YoY - "
## [1] "VZ.Open - VZ.Open_YoY - "
## [1] "VZ.High - VZ.High_YoY - "
## [1] "VZ.Low - VZ.Low_YoY - "
## [1] "VZ.Close - VZ.Close_YoY - "
## [1] "VZ.Volume - VZ.Volume_YoY - "
## [1] "VZ.Adjusted - VZ.Adjusted_YoY - "
## [1] "ISMMANPMI - ISMMANPMI_YoY - Institute of Supply Managment PMI Composite Index"
## [1] "MULTPLSP500PERATIOMONTH - MULTPLSP500PERATIOMONTH_YoY - S&P 500 TTM P/E"
## [1] "MULTPLSP500SALESQUARTER - MULTPLSP500SALESQUARTER_YoY - S&P 500 TTM Sales\n(Not Inflation Adjusted)"
## [1] "MULTPLSP500DIVYIELDMONTH - MULTPLSP500DIVYIELDMONTH_YoY - S&P 500 Dividend Yield by Month"
## [1] "MULTPLSP500DIVMONTH - MULTPLSP500DIVMONTH_YoY - S&P 500 Dividend by Month \n (Inflation Adjusted)"
## [1] "CHRISCMEHG1 - CHRISCMEHG1_YoY - Copper Futures, Continuous Contract #1 (HG1) \n(Front Month)"
## [1] "WWDIWLDISAIRGOODMTK1 - WWDIWLDISAIRGOODMTK1_YoY - Air transport, freight"
## [1] "PETA103600001M - PETA103600001M_YoY - U.S. Total Gasoline Retail Sales by Refiners, Monthly"
## [1] "PETA123600001M - PETA123600001M_YoY - U.S. Regular Gasoline Retail Sales\nby Refiners, Monthly"
## [1] "PETA143B00001M - PETA143B00001M_YoY - U.S. Midgrade Gasoline Retail Sales\nby Refiners, Monthly"
## [1] "PETA133B00001M - PETA133B00001M_YoY - U.S. Premium Gasoline Bulk Sales\n(Volume) by Refiners, Monthly"
## [1] "TOTALOGNRPUSM - TOTALOGNRPUSM_YoY - Crude Oil and Natural Gas Rotary Rigs in Operation, Total, Monthly"
## [1] "TOTALPANRPUSM - TOTALPANRPUSM_YoY - Crude Oil Rotary Rigs in Operation, Monthly"
## [1] "TOTALNGNRPUSM - TOTALNGNRPUSM_YoY - Natural Gas Rotary Rigs in Operation, Monthly"
## [1] "BKRTotal - BKRTotal_YoY - Total Rig Count"
## [1] "BKRGas - BKRGas_YoY - Gas Rig Count"
## [1] "BKROil - BKROil_YoY - Oil Rig Count"
## [1] "FARMINCOME - FARMINCOME_YoY - Net Farm Income"
## [1] "OPEARNINGSPERSHARE - OPEARNINGSPERSHARE_YoY - Operating Earnings per Share"
## [1] "OPEARNINGSPERSHARE has zero or negative values. Log series will be zero."
## [1] "AREARNINGSPERSHARE - AREARNINGSPERSHARE_YoY - As-Reported Earnings per Share"
## [1] "AREARNINGSPERSHARE has zero or negative values. Log series will be zero."
## [1] "CASHDIVIDENDSPERSHR - CASHDIVIDENDSPERSHR_YoY - Cash Dividends per Share"
## [1] "SALESPERSHR - SALESPERSHR_YoY - Sales per Share"
## [1] "BOOKVALPERSHR - BOOKVALPERSHR_YoY - Book value per Share"
## [1] "CAPEXPERSHR - CAPEXPERSHR_YoY - Cap ex per Share"
## [1] "PRICE - PRICE_YoY - Price"
## [1] "OPEARNINGSTTM - OPEARNINGSTTM_YoY - TTM Operating Earnings"
## [1] "AREARNINGSTTM - AREARNINGSTTM_YoY - TTM Reported Earnings"
## [1] "FINRAMarginDebt - FINRAMarginDebt_YoY - Margin Debt"
## [1] "FINRAFreeCreditMargin - FINRAFreeCreditMargin_YoY - Free Credit Balances in Customers' Securities Margin Accounts"
## [1] "OCCEquityVolume - OCCEquityVolume_YoY - Equity Options Volume"
## [1] "OCCEquityVolume has zero or negative values. Log series will be zero."
## [1] "OCCNonEquityVolume - OCCNonEquityVolume_YoY - Non-Equity Options Volume"
## [1] "OCCNonEquityVolume has zero or negative values. Log series will be zero."
## [1] "RSALESAGG - RSALESAGG_YoY - Real Retail and Food Services Sales\n(RRSFS and RSALES)"
## [1] "BUSLOANS.minus.BUSLOANSNSA - BUSLOANS.minus.BUSLOANSNSA_YoY - Business Loans (Montlhy) SA - NSA"
## [1] "BUSLOANS.minus.BUSLOANSNSA has zero or negative values. Log series will be zero."
## [1] "BUSLOANS.minus.BUSLOANSNSA.by.GDP - BUSLOANS.minus.BUSLOANSNSA.by.GDP_YoY - Business Loans (Montlhy) SA - NSA divided by GDP"
## [1] "BUSLOANS.minus.BUSLOANSNSA.by.GDP has zero or negative values. Log series will be zero."
## [1] "BUSLOANS.by.GDP - BUSLOANS.by.GDP_YoY - Business Loans Normalized by GDP"
## [1] "BUSLOANS.INTEREST - BUSLOANS.INTEREST_YoY - Business Loans (Monthly, SA)\nAdjusted Interest Burdens"
## [1] "BUSLOANS.INTEREST.by.GDP - BUSLOANS.INTEREST.by.GDP_YoY - Business Loans (Monthly, SA)\nAdjusted Interest Burden Divided by GDP"
## [1] "BUSLOANSNSA.by.GDP - BUSLOANSNSA.by.GDP_YoY - Business Loans Normalized by GDP"
## [1] "TOTCI.by.GDP - TOTCI.by.GDP_YoY - Business Loans (Weekly, SA) Normalized by GDP"
## [1] "TOTCINSA.by.GDP - TOTCINSA.by.GDP_YoY - Business Loans (Weekly, NSA) Normalized by GDP"
## [1] "TOTCINSA.INTEREST - TOTCINSA.INTEREST_YoY - Business Loans (Weekly, NSA)\nAdjusted Interest Burdens"
## [1] "TOTCINSA.INTEREST.by.GDP - TOTCINSA.INTEREST.by.GDP_YoY - Business Loans (weekly, NSA)\nAdjusted Interest Burden Divided by GDP"
## [1] "W875RX1.by.GDP - W875RX1.by.GDP_YoY - Real Personal Income Normalized by GDP"
## [1] "A065RC1A027NBEA.by.GDP - A065RC1A027NBEA.by.GDP_YoY - Personal Income (NSA) Normalized by GDP"
## [1] "PI.by.GDP - PI.by.GDP_YoY - Personal Income (SA) Normalized by GDP"
## [1] "A053RC1Q027SBEA.by.GDP - A053RC1Q027SBEA.by.GDP_YoY - National income: Corporate profits\nbefore tax (without IVA and CCAdj)\nNormalized by GDP"
## [1] "CPROFIT.by.GDP - CPROFIT.by.GDP_YoY - National income: Corporate profits\nbefore tax (with IVA and CCAdj)\nNormalized by GDP"
## [1] "CONSUMERNSA.by.GDP - CONSUMERNSA.by.GDP_YoY - Consumer Loans Not Seasonally\nAdjusted divided by GDP"
## [1] "RREACBM027NBOG.by.GDP - RREACBM027NBOG.by.GDP_YoY - Residental Real Estate Loans (Monthly, NSA)\ndivided by GDP"
## [1] "RREACBM027SBOG.by.GDP - RREACBM027SBOG.by.GDP_YoY - Residental Real Estate Loans (Monthly, SA)\ndivided by GDP"
## [1] "RREACBW027SBOG.by.GDP - RREACBW027SBOG.by.GDP_YoY - Residental Real Estate Loans (Weekly, SA)\ndivided by GDP"
## [1] "RREACBW027NBOG.by.GDP - RREACBW027NBOG.by.GDP_YoY - Residental Real Estate Loans (Weekly, NSA)\ndivided by GDP"
## [1] "UMDMNO.by.GDP - UMDMNO.by.GDP_YoY - Durable Goods (Monthly, NSA)\ndivided by GDP"
## [1] "DGORDER.by.GDP - DGORDER.by.GDP_YoY - Durable Goods (Monthly, NSA)\ndivided by GDP"
## [1] "ASHMA.by.GDP - ASHMA.by.GDP_YoY - Home Mortgages (Quarterly, NSA)\ndivided by GDP"
## [1] "ASHMA.INTEREST - ASHMA.INTEREST_YoY - Home Mortgages (Quarterly, NSA)\n 30-Year Fixed Interest Burdens"
## [1] "ASHMA.INTEREST.by.GDP - ASHMA.INTEREST.by.GDP_YoY - "
## [1] "CONSUMERNSA.INTEREST - CONSUMERNSA.INTEREST_YoY - Consumer Loans (Not Seasonally\nAdjusted) Interest Burdens"
## [1] "CONSUMERNSA.INTEREST.by.GDP - CONSUMERNSA.INTEREST.by.GDP_YoY - Consumer Loans (Not Seasonally\nAdjusted) Interest Burden Divided by GDP"
## [1] "TOTLNNSA - TOTLNNSA_YoY - Total Loans Not Seasonally\nAdjusted (BUSLOANS+REALLNSA+CONSUMERNSA)"
## [1] "TOTLNNSA.by.GDP - TOTLNNSA.by.GDP_YoY - Total Loans Not Seasonally\nAdjusted divided by GDP"
## [1] "TOTLNNSA.INTEREST - TOTLNNSA.INTEREST_YoY - Total Loans Not Seasonally\nAdjusted Interest Burdens"
## [1] "TOTLNNSA.INTEREST.by.GDP - TOTLNNSA.INTEREST.by.GDP_YoY - Total Loans Not Seasonally\nAdjusted Interest Burden Divided by GDP"
## [1] "WRESBAL.by.GDP - WRESBAL.by.GDP_YoY - Reserve Balances with Federal\nReserve Banks Divided by GDP"
## [1] "EXCSRESNW.by.GDP - EXCSRESNW.by.GDP_YoY - Excess Reserves of Depository Institutions\nDivided by GDP"
## [1] "WLRRAL.by.GDP - WLRRAL.by.GDP_YoY - Liabilities and Capital:\nLiabilities: Reverse Repurchase Agreements:\nWednesday Level (NSA)\nDivided by GDP"
## [1] "SOFR99.minus.SOFR1 - SOFR99.minus.SOFR1_YoY - Secured Overnight Financing Rate:\n99th Percentile - 1st Percentile"
## [1] "EXPCH.minus.IMPCH - EXPCH.minus.IMPCH_YoY - U.S. Exports to China (FAS Basis) -\nU.S. Imports to China (Customs Basis)"
## [1] "EXPCH.minus.IMPCH has zero or negative values. Log series will be zero."
## [1] "EXPMX.minus.IMPMX - EXPMX.minus.IMPMX_YoY - "
## [1] "EXPMX.minus.IMPMX has zero or negative values. Log series will be zero."
## [1] "SRPSABSNNCB.by.GDP - SRPSABSNNCB.by.GDP_YoY - Nonfinancial corporate business;\nsecurity repurchase agreements;\nasset, Level (NSA)\nDivided by GDP"
## [1] "SRPSABSNNCB.by.GDP has zero or negative values. Log series will be zero."
## [1] "ASTLL.by.GDP - ASTLL.by.GDP_YoY - All sectors; total loans;\nliability, Level (NSA)\nDivided by GDP"
## [1] "ASFMA.by.GDP - ASFMA.by.GDP_YoY - All sectors; farm\nmortgages; asset, Level (NSA)\nDivided by GDP"
## [1] "ASFMA.by.ASTLL - ASFMA.by.ASTLL_YoY - All sectors; total loans\nDivided by farm mortgages"
## [1] "ASFMA.INTEREST - ASFMA.INTEREST_YoY - Farm Mortgages (Quarterly, NSA)\n 30-Year Fixed Interest Burdens"
## [1] "ASFMA.INTEREST.by.GDP - ASFMA.INTEREST.by.GDP_YoY - Farm Mortgages (Quarterly, NSA)\nInterest Burden Divided by GDP"
## [1] "FARMINCOME.by.GDP - FARMINCOME.by.GDP_YoY - Farm Income (Annual, NSA)\nDivided by GDP"
## [1] "BOGMBASE.by.GDP - BOGMBASE.by.GDP_YoY - BOGMBASE\nDivided by GDP"
## [1] "WALCL.by.GDP - WALCL.by.GDP_YoY - All Federal Reserve Banks: Total Assets\nDivided by GDP"
## [1] "ECBASSETS.by.EUNNGDP - ECBASSETS.by.EUNNGDP_YoY - Central Bank Assets for Euro Area (11-19 Countries)\nDivided by GDP"
## [1] "DGS30TO10 - DGS30TO10_YoY - Yield Curve, 30 and 10 Year Treasury (DGS30-DGS10)"
## [1] "DGS30TO10 has zero or negative values. Log series will be zero."
## [1] "DGS10TO1 - DGS10TO1_YoY - Yield Curve, 10 and 1 Year Treasury (DGS10-DGS1)"
## [1] "DGS10TO1 has zero or negative values. Log series will be zero."
## [1] "DGS10TO2 - DGS10TO2_YoY - Yield Curve, 10 and 2 Year Treasury (DGS10-DGS2)"
## [1] "DGS10TO2 has zero or negative values. Log series will be zero."
## [1] "DGS10TOTB3MS - DGS10TOTB3MS_YoY - Yield Curve, 10 and 3 Month Treasury (DGS10-TB3MS)"
## [1] "DGS10TOTB3MS has zero or negative values. Log series will be zero."
## [1] "DGS10TODTB3 - DGS10TODTB3_YoY - Yield Curve, 10 and 3 Month Treasury (DGS10-DTB3)"
## [1] "DGS10TODTB3 has zero or negative values. Log series will be zero."
## [1] "DGS10ByAAA - DGS10ByAAA_YoY - AAA ratio to 10 year treasury (AAA/DGS10)"
## [1] "LNU03000000BYPOPTHM - LNU03000000BYPOPTHM_YoY - Unemployment level (NSA) / Population"
## [1] "UNEMPLOYBYPOPTHM - UNEMPLOYBYPOPTHM_YoY - Unemployment level, seasonally adjusted / Population"
## [1] "NPPTTLBYPOPTHM - NPPTTLBYPOPTHM_YoY - ADP Private Employment / Population"
## [1] "U6toU3 - U6toU3_YoY - U6RATE minums UNRATE"
## [1] "CHRISCMEHG1.by.PPIACO - CHRISCMEHG1.by.PPIACO_YoY - Copper, $/lb, Normalized by\ncommodities producer price index"
## [1] "CHRISCMEHG1.by.CPIAUCSL - CHRISCMEHG1.by.CPIAUCSL_YoY - Copper, $/lb, Normalized by\nconsumer price index"
## [1] "DCOILBRENTEU.by.PPIACO - DCOILBRENTEU.by.PPIACO_YoY - Crude Oil - Brent, $/bbl, Normalized by\nproducer price index c.o."
## [1] "DCOILWTICO.by.PPIACO - DCOILWTICO.by.PPIACO_YoY - Crude Oil - WTI, $/bbl, Normalized by\nproducer price index c.o."
## [1] "DCOILWTICO.by.PPIACO has zero or negative values. Log series will be zero."
## [1] "GOLDAMGBD228NLBM.by.PPIACO - GOLDAMGBD228NLBM.by.PPIACO_YoY - Gold, USD/Troy OUnce, Normalized by\ncommodities producer price index"
## [1] "GOLDAMGBD228NLBM.by.CPIAUCSL - GOLDAMGBD228NLBM.by.CPIAUCSL_YoY - Gold, USD/Troy OUnce, Normalized by\nconsumer price index"
## [1] "GOLDAMGBD228NLBM.by.GDP - GOLDAMGBD228NLBM.by.GDP_YoY - Gold, USD/Troy OUnce, Normalized by GDP"
## [1] "GSG.Close.by.GDPDEF - GSG.Close.by.GDPDEF_YoY - GSCI Commodity-Indexed Trust, Normalized by GDP def"
## [1] "GSG.Close.by.GSPC.Close - GSG.Close.by.GSPC.Close_YoY - GSCI Commodity-Indexed Trust, Normalized by S&P 500"
## [1] "GDPBYPOPTHM - GDPBYPOPTHM_YoY - GDP/Population"
## [1] "GDPBYCPIAUCSL - GDPBYCPIAUCSL_YoY - GDP divided by CPI"
## [1] "GDPBYCPIAUCSLBYPOPTHM - GDPBYCPIAUCSLBYPOPTHM_YoY - GDP divided by CPI/Population"
## [1] "GSPC.CloseBYMDY.Close - GSPC.CloseBYMDY.Close_YoY - GSPC by MDY"
## [1] "QQQ.CloseBYMDY.Close - QQQ.CloseBYMDY.Close_YoY - QQQ by MDY"
## [1] "GSPC.DailySwing - GSPC.DailySwing_YoY - S&P 500 (^GSPC) Daily Swing: (High - Low) / Open"
## [1] "GSPC.DailySwing has zero or negative values. Log series will be zero."
## [1] "GSPC.Open.by.GDPDEF - GSPC.Open.by.GDPDEF_YoY - S&P 500 (^GSPC) Open\ndivided by GDP deflator"
## [1] "GSPC.Close.by.GDPDEF - GSPC.Close.by.GDPDEF_YoY - S&P 500 (^GSPC) Close\ndivided by GDP deflator"
## [1] "HNFSUSNSA.minus.HSN1FNSA - HNFSUSNSA.minus.HSN1FNSA_YoY - Houses for sale -\n houses sold"
## [1] "MSPUS.times.HOUST - MSPUS.times.HOUST_YoY - New privately owned units start\ntimes median price"
## [1] "MSPUS.times.HNFSUSNSA - MSPUS.times.HNFSUSNSA_YoY - New privately owned 1-family units for sale\ntimes median price"
df.data <- lst.df[[1]]
df.symbols <- lst.df[[2]]

Recession calculations

Summary calculations

These values are used below

Conclusion

In this worksheet a model predicting the onset of recession was built. From the model a trading rule was derived to allow backtesting. The model performed well and the trading rule backtesting showed that applying this in the post-WWII period would have resulted in an increase in returns. That is not too bad, but there are a few changes that would likely improve the model:

Market Conditions

#The model is predicting a `r paste(sprintf("%3.0f", tail(df.data$recession.initiation.smooth.avg,1)[[1]]*100), "%", sep="")` chance of recession in the next 12 months. :

#- P/E ratio of `r sprintf("%3.2f", tail(df.data$MULTPLSP500PERATIOMONTH,1))` compares to a historical mean value over the last decade of `r sprintf("%3.2f", df.data$MULTPLSP500PERATIOMONTH_Mean[1])`. Since 2008 recession P/E has only fallen below historical norm a few times. The current value is high, but well off the peaks. If earnings are +2-4% year-over-year then it is not unrealistic.

As of Feb 2020 we have entered a recession as defined by the NBER yet the market continues to rise.

P/E ratio of 44.64 compares to a historical mean value over the last decade of 18.56. Since 2008 recession P/E has only fallen below historical norm a few times. The current value is high, but well off the peaks. If earnings are +2-4% year-over-year then it is not unrealistic.

  • S&P 500 Volume, last updated on 2021-06-11, is flat over the last year and positive over the last month.

Unemployment

  • Headline unemployment (U-3) stands at 5.80% (last updated on 2021-05-01) which is near the 1-year average of 6.94% and rising with respect to the low in the last twelve months of 5.80%. Unlikely the rate will drop again.

  • Payrolls (BLS data, NSA) year-over-year stands at 4.77% which is above the 1-year average of -2.61% and falling with respect to the peak, in the last twelve months, of 10.87%.

  • Jobless claims (ICSA data) year-over-year stands at -74.43% (last updated on 2021-06-05) which is in-line with the 1-year average of 223.02% and below the peak, in the last twelve months, of 587.60%.
## Warning: Removed 1 rows containing missing values (geom_text).
## Warning: Removed 1 rows containing missing values (geom_hline).

Personal Income

  • Real personal income year over year growth stands at 5.16% (last updated on 2021-04-01). This is below the recent peak of 9.20%.

Yield Curve and Bond Market

  • The 10-year to 3-month yield stands at 1.42% (last updated on 2021-06-10). This is above the recent low of 0.43%. The trend is positive over the last year and negative over the last month.

  • Auto sales flat?

Auxillary Series

I explored additional data series. The sections below have those data series along with comments.

Recent Highs

Print out the new 180 day high values

df.symbolsTrue <-
  df.symbols[df.symbols$'Max180' == TRUE, c("string.symbol", "string.description")]
df.symbolsTrue <-
  df.symbolsTrue[!(is.na(df.symbolsTrue$string.symbol)), ]
df.symbolsTrue <-
  df.symbolsTrue[!(df.symbolsTrue$string.symbol == 'USREC'), ]
#print(head(df.symbolsTrue,20))

kable(df.symbolsTrue, caption = "6-Month High") %>%
  kable_styling(bootstrap_options = c("striped", "hover"))  
6-Month High
string.symbol string.description
1 CPIAUCSL Consumer Price Index for All Urban Consumers: All Items
4 PCEPI Personal Consumption Expenditures: Chain-type Price Index
7 NPPTTL Total Nonfarm Private Payroll Employment (ADP)
9 PAYNSA All Employees: Total Nonfarm Payrolls (NSA)
10 TABSHNO Households and nonprofit organizations; total assets, Level
14 RSALES Real Retail Sales (DISCONTINUED)
15 W875RX1 Real personal income excluding current transfer receipts
17 PCOPPUSDM Global price of Copper
54 HNFSUSNSA New One Family Houses for Sale in the United States (Monthly, NSA)
73 ASTLL All sectors; total loans; liability, Level (NSA)
74 FBDILNECA Domestic financial sectors; depository institution loans n.e.c.; asset, Level (NSA)
75 ASOLAL All sectors; other loans and advances; liability, Level (NSA)
76 ASTMA All sectors; total mortgages; asset, Level (NSA)
77 ASHMA All sectors; home mortgages; asset, Level (NSA)
78 ASMRMA All sectors; multifamily residential mortgages; asset, Level (NSA)
79 ASCMA All sectors; commercial mortgages; asset, Level (NSA)
80 ASFMA All sectors; farm mortgages; asset, Level (NSA)
82 FBDSILQ027S Domestic financial sectors debt securities; liability, Level (NSA)
84 NCBDBIQ027S Nonfinancial corporate business; debt securities; liability, Level
96 NEWORDER Manufacturers’ New Orders: Nondefense Capital Goods Excluding Aircraft
104 GDP Gross Domestic Product
105 FNDEFX Federal Government: Nondefense Consumption Expenditures and Gross Investment (SA, Annual Rate)
106 FDEFX Federal Government: National Defense Consumption Expenditures and Gross Investment (SA, Annual Rate)
107 GDPNOW Fed Atlanta GDPNow
108 GDPC1 Real Gross Domestic Product
109 GDPDEF Gross Domestic Product: Implicit Price Deflator
111 WLRRAL Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA)
115 MZMV Velocity of MZM Money Stock
118 OPHNFB Nonfarm Business Sector: Real Output Per Hour of All Persons
126 GFDEBTN Federal Debt: Total Public Debt
131 CSUSHPINSA S&P/Case-Shiller U.S. National Home Price Index (NSA)
133 FYFSD Federal Surplus or Deficit
134 FYFSGDA188S Federal Surplus or Deficit [-] as Percent of Gross Domestic Product
139 WALCL All Federal Reserve Banks: Total Assets
140 OUTMS Manufacturing Sector: Real Output
142 PRS30006163 Manufacturing Sector: Real Output Per Person
157 IOER Interest Rate on Excess Reserves
159 EXCSRESNW Excess Reserves of Depository Institutions
160 ECBASSETS Central Bank Assets for Euro Area (11-19 Countries)
161 EUNNGDP Gross Domestic Product (Euro/ECU series) for Euro Area (19 Countries)
162 CEU0600000007 Average Weekly Hours of Production and Nonsupervisory Employees: Goods-Producing
164 CURRENCY Currency Component of M1 (Seasonally Adjusted)
165 WCURRNS Currency Component of M1
166 BOGMBASE Monetary Base; Total
168 PPIACO Producer Price Index for All Commodities
169 PCUOMFGOMFG Producer Price Index by Industry: Total Manufacturing Industries
170 POPTHM Population (U.S.)
171 POPTHM Population (U.S.)
173 LNU01000000 Civilian Labor Force Level, NSA
176 RSAFS Advance Retail Sales: Retail and Food Services
177 FRGSHPUSM649NCIS Cass Freight Index: Shipments
180 A065RC1A027NBEA Personal income (NSA)
182 PCE Personal Consumption Expenditures (SA)
183 A053RC1Q027SBEA National income: Corporate profits before tax (without IVA and CCAdj)
218 MULTPLSP500PERATIOMONTH S&P 500 TTM P/E
223 WWDIWLDISAIRGOODMTK1 Air transport, freight
224 PETA103600001M U.S. Total Gasoline Retail Sales by Refiners, Monthly
225 PETA123600001M U.S. Regular Gasoline Retail Sales by Refiners, Monthly
226 PETA143B00001M U.S. Midgrade Gasoline Retail Sales by Refiners, Monthly
228 TOTALOGNRPUSM Crude Oil and Natural Gas Rotary Rigs in Operation, Total, Monthly
229 TOTALPANRPUSM Crude Oil Rotary Rigs in Operation, Monthly
230 TOTALNGNRPUSM Natural Gas Rotary Rigs in Operation, Monthly
231 BKRTotal Total Rig Count
232 BKRGas Gas Rig Count
233 BKROil Oil Rig Count
234 FARMINCOME Net Farm Income
235 OPEARNINGSPERSHARE Operating Earnings per Share
237 CASHDIVIDENDSPERSHR Cash Dividends per Share
238 SALESPERSHR Sales per Share
239 BOOKVALPERSHR Book value per Share
240 CAPEXPERSHR Cap ex per Share
241 PRICE Price
244 FINRAMarginDebt Margin Debt
246 OCCEquityVolume Equity Options Volume
247 OCCNonEquityVolume Non-Equity Options Volume
259 W875RX1.by.GDP Real Personal Income Normalized by GDP
262 A053RC1Q027SBEA.by.GDP National income: Corporate profits before tax (without IVA and CCAdj) Normalized by GDP
282 WLRRAL.by.GDP Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Divided by GDP
293 BOGMBASE.by.GDP BOGMBASE Divided by GDP
294 WALCL.by.GDP All Federal Reserve Banks: Total Assets Divided by GDP
304 NPPTTLBYPOPTHM ADP Private Employment / Population
313 GSG.Close.by.GDPDEF GSCI Commodity-Indexed Trust, Normalized by GDP def
321 GSPC.Open.by.GDPDEF S&P 500 (^GSPC) Open divided by GDP deflator
322 GSPC.Close.by.GDPDEF S&P 500 (^GSPC) Close divided by GDP deflator
323 HNFSUSNSA.minus.HSN1FNSA Houses for sale - houses sold
325 MSPUS.times.HNFSUSNSA New privately owned 1-family units for sale times median price
329 CPIAUCSL_Smooth Savitsky-Golay Smoothed (p=3, n=365) Consumer Price Index for All Urban Consumers: All Items
331 CPIAUCSL_SmoothDer Derivative of Smoothed Consumer Price Index for All Urban Consumers: All Items
332 CPIAUCSL_Log Log of Consumer Price Index for All Urban Consumers: All Items
333 CPIAUCSL_mva200 Consumer Price Index for All Urban Consumers: All Items 200 Day MA
334 CPIAUCSL_mva050 Consumer Price Index for All Urban Consumers: All Items 50 Day MA
336 USREC_YoY4 NBER based Recession Indicators 4 Year over 4 Year
337 USREC_YoY5 NBER based Recession Indicators 5 Year over 5 Year
340 USREC_SmoothDer Derivative of Smoothed NBER based Recession Indicators
341 USREC_Log Log of NBER based Recession Indicators
342 USREC_mva200 NBER based Recession Indicators 200 Day MA
343 USREC_mva050 NBER based Recession Indicators 50 Day MA
349 UNRATE_SmoothDer Derivative of Smoothed Civilian Unemployment Rate U-3
356 PCEPI_Smooth Savitsky-Golay Smoothed (p=3, n=365) Personal Consumption Expenditures: Chain-type Price Index
359 PCEPI_Log Log of Personal Consumption Expenditures: Chain-type Price Index
360 PCEPI_mva200 Personal Consumption Expenditures: Chain-type Price Index 200 Day MA
361 PCEPI_mva050 Personal Consumption Expenditures: Chain-type Price Index 50 Day MA
367 CCSA_SmoothDer Derivative of Smoothed Continued Claims (Insured Unemployment)
376 CCNSA_SmoothDer Derivative of Smoothed Continued Claims (Insured Unemployment, NSA)
383 NPPTTL_Smooth Savitsky-Golay Smoothed (p=3, n=365) Total Nonfarm Private Payroll Employment (ADP)
386 NPPTTL_Log Log of Total Nonfarm Private Payroll Employment (ADP)
387 NPPTTL_mva200 Total Nonfarm Private Payroll Employment (ADP) 200 Day MA
388 NPPTTL_mva050 Total Nonfarm Private Payroll Employment (ADP) 50 Day MA
394 U6RATE_SmoothDer Derivative of Smoothed Total unemployed + margin + part-time U-6
401 PAYNSA_Smooth Savitsky-Golay Smoothed (p=3, n=365) All Employees: Total Nonfarm Payrolls (NSA)
404 PAYNSA_Log Log of All Employees: Total Nonfarm Payrolls (NSA)
405 PAYNSA_mva200 All Employees: Total Nonfarm Payrolls (NSA) 200 Day MA
406 PAYNSA_mva050 All Employees: Total Nonfarm Payrolls (NSA) 50 Day MA
413 TABSHNO_Log Log of Households and nonprofit organizations; total assets, Level
414 TABSHNO_mva200 Households and nonprofit organizations; total assets, Level 200 Day MA
415 TABSHNO_mva050 Households and nonprofit organizations; total assets, Level 50 Day MA
428 INDPRO_Smooth Savitsky-Golay Smoothed (p=3, n=365) Industrial Production Index
432 INDPRO_mva200 Industrial Production Index 200 Day MA
433 INDPRO_mva050 Industrial Production Index 50 Day MA
437 RRSFS_Smooth Savitsky-Golay Smoothed (p=3, n=365) Real Retail and Food Services Sales
439 RRSFS_SmoothDer Derivative of Smoothed Real Retail and Food Services Sales
441 RRSFS_mva200 Real Retail and Food Services Sales 200 Day MA
443 RSALES_YoY Real Retail Sales (DISCONTINUED) Year over Year
444 RSALES_YoY4 Real Retail Sales (DISCONTINUED) 4 Year over 4 Year
445 RSALES_YoY5 Real Retail Sales (DISCONTINUED) 5 Year over 5 Year
449 RSALES_Log Log of Real Retail Sales (DISCONTINUED)
450 RSALES_mva200 Real Retail Sales (DISCONTINUED) 200 Day MA
451 RSALES_mva050 Real Retail Sales (DISCONTINUED) 50 Day MA
455 W875RX1_Smooth Savitsky-Golay Smoothed (p=3, n=365) Real personal income excluding current transfer receipts
458 W875RX1_Log Log of Real personal income excluding current transfer receipts
459 W875RX1_mva200 Real personal income excluding current transfer receipts 200 Day MA
460 W875RX1_mva050 Real personal income excluding current transfer receipts 50 Day MA
468 RPI_mva200 Real personal income 200 Day MA
473 PCOPPUSDM_Smooth Savitsky-Golay Smoothed (p=3, n=365) Global price of Copper
476 PCOPPUSDM_Log Log of Global price of Copper
477 PCOPPUSDM_mva200 Global price of Copper 200 Day MA
478 PCOPPUSDM_mva050 Global price of Copper 50 Day MA
482 NOBL.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
486 NOBL.Open_mva200 200 Day MA
487 NOBL.Open_mva050 50 Day MA
491 NOBL.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
495 NOBL.High_mva200 200 Day MA
496 NOBL.High_mva050 50 Day MA
500 NOBL.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
504 NOBL.Low_mva200 200 Day MA
505 NOBL.Low_mva050 50 Day MA
509 NOBL.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
513 NOBL.Close_mva200 200 Day MA
514 NOBL.Close_mva050 50 Day MA
527 NOBL.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
531 NOBL.Adjusted_mva200 200 Day MA
532 NOBL.Adjusted_mva050 50 Day MA
536 SCHD.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
540 SCHD.Open_mva200 200 Day MA
541 SCHD.Open_mva050 50 Day MA
545 SCHD.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
549 SCHD.High_mva200 200 Day MA
550 SCHD.High_mva050 50 Day MA
554 SCHD.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
555 SCHD.Low_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
558 SCHD.Low_mva200 200 Day MA
559 SCHD.Low_mva050 50 Day MA
563 SCHD.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
564 SCHD.Close_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
567 SCHD.Close_mva200 200 Day MA
568 SCHD.Close_mva050 50 Day MA
581 SCHD.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
582 SCHD.Adjusted_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
585 SCHD.Adjusted_mva200 200 Day MA
586 SCHD.Adjusted_mva050 50 Day MA
590 PFF.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
591 PFF.Open_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
594 PFF.Open_mva200 200 Day MA
595 PFF.Open_mva050 50 Day MA
599 PFF.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
600 PFF.High_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
603 PFF.High_mva200 200 Day MA
608 PFF.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
609 PFF.Low_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
612 PFF.Low_mva200 200 Day MA
613 PFF.Low_mva050 50 Day MA
617 PFF.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
618 PFF.Close_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
621 PFF.Close_mva200 200 Day MA
622 PFF.Close_mva050 50 Day MA
635 PFF.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
636 PFF.Adjusted_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
638 PFF.Adjusted_Log Log of
639 PFF.Adjusted_mva200 200 Day MA
640 PFF.Adjusted_mva050 50 Day MA
644 HPI.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
648 HPI.Open_mva200 200 Day MA
649 HPI.Open_mva050 50 Day MA
653 HPI.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
657 HPI.High_mva200 200 Day MA
658 HPI.High_mva050 50 Day MA
662 HPI.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
666 HPI.Low_mva200 200 Day MA
667 HPI.Low_mva050 50 Day MA
671 HPI.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
675 HPI.Close_mva200 200 Day MA
676 HPI.Close_mva050 50 Day MA
689 HPI.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
692 HPI.Adjusted_Log Log of
693 HPI.Adjusted_mva200 200 Day MA
694 HPI.Adjusted_mva050 50 Day MA
698 GSFTX.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
699 GSFTX.Open_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
702 GSFTX.Open_mva200 200 Day MA
703 GSFTX.Open_mva050 50 Day MA
707 GSFTX.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
708 GSFTX.High_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
711 GSFTX.High_mva200 200 Day MA
712 GSFTX.High_mva050 50 Day MA
716 GSFTX.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
717 GSFTX.Low_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
720 GSFTX.Low_mva200 200 Day MA
721 GSFTX.Low_mva050 50 Day MA
725 GSFTX.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
726 GSFTX.Close_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
729 GSFTX.Close_mva200 200 Day MA
730 GSFTX.Close_mva050 50 Day MA
731 GSFTX.Volume_YoY Year over Year
732 GSFTX.Volume_YoY4 4 Year over 4 Year
733 GSFTX.Volume_YoY5 5 Year over 5 Year
734 GSFTX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
735 GSFTX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
736 GSFTX.Volume_SmoothDer Derivative of Smoothed
737 GSFTX.Volume_Log Log of
738 GSFTX.Volume_mva200 200 Day MA
739 GSFTX.Volume_mva050 50 Day MA
743 GSFTX.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
744 GSFTX.Adjusted_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
747 GSFTX.Adjusted_mva200 200 Day MA
748 GSFTX.Adjusted_mva050 50 Day MA
752 LFMIX.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
754 LFMIX.Open_SmoothDer Derivative of Smoothed
756 LFMIX.Open_mva200 200 Day MA
757 LFMIX.Open_mva050 50 Day MA
761 LFMIX.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
763 LFMIX.High_SmoothDer Derivative of Smoothed
765 LFMIX.High_mva200 200 Day MA
766 LFMIX.High_mva050 50 Day MA
770 LFMIX.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
772 LFMIX.Low_SmoothDer Derivative of Smoothed
774 LFMIX.Low_mva200 200 Day MA
775 LFMIX.Low_mva050 50 Day MA
779 LFMIX.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
781 LFMIX.Close_SmoothDer Derivative of Smoothed
783 LFMIX.Close_mva200 200 Day MA
784 LFMIX.Close_mva050 50 Day MA
785 LFMIX.Volume_YoY Year over Year
786 LFMIX.Volume_YoY4 4 Year over 4 Year
787 LFMIX.Volume_YoY5 5 Year over 5 Year
788 LFMIX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
789 LFMIX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
790 LFMIX.Volume_SmoothDer Derivative of Smoothed
791 LFMIX.Volume_Log Log of
792 LFMIX.Volume_mva200 200 Day MA
793 LFMIX.Volume_mva050 50 Day MA
797 LFMIX.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
799 LFMIX.Adjusted_SmoothDer Derivative of Smoothed
801 LFMIX.Adjusted_mva200 200 Day MA
802 LFMIX.Adjusted_mva050 50 Day MA
806 LFMCX.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
808 LFMCX.Open_SmoothDer Derivative of Smoothed
810 LFMCX.Open_mva200 200 Day MA
811 LFMCX.Open_mva050 50 Day MA
815 LFMCX.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
817 LFMCX.High_SmoothDer Derivative of Smoothed
819 LFMCX.High_mva200 200 Day MA
820 LFMCX.High_mva050 50 Day MA
824 LFMCX.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
826 LFMCX.Low_SmoothDer Derivative of Smoothed
828 LFMCX.Low_mva200 200 Day MA
829 LFMCX.Low_mva050 50 Day MA
833 LFMCX.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
835 LFMCX.Close_SmoothDer Derivative of Smoothed
837 LFMCX.Close_mva200 200 Day MA
838 LFMCX.Close_mva050 50 Day MA
839 LFMCX.Volume_YoY Year over Year
840 LFMCX.Volume_YoY4 4 Year over 4 Year
841 LFMCX.Volume_YoY5 5 Year over 5 Year
842 LFMCX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
843 LFMCX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
844 LFMCX.Volume_SmoothDer Derivative of Smoothed
845 LFMCX.Volume_Log Log of
846 LFMCX.Volume_mva200 200 Day MA
847 LFMCX.Volume_mva050 50 Day MA
851 LFMCX.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
853 LFMCX.Adjusted_SmoothDer Derivative of Smoothed
855 LFMCX.Adjusted_mva200 200 Day MA
856 LFMCX.Adjusted_mva050 50 Day MA
860 LFMAX.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
862 LFMAX.Open_SmoothDer Derivative of Smoothed
864 LFMAX.Open_mva200 200 Day MA
865 LFMAX.Open_mva050 50 Day MA
869 LFMAX.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
871 LFMAX.High_SmoothDer Derivative of Smoothed
873 LFMAX.High_mva200 200 Day MA
874 LFMAX.High_mva050 50 Day MA
878 LFMAX.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
880 LFMAX.Low_SmoothDer Derivative of Smoothed
882 LFMAX.Low_mva200 200 Day MA
883 LFMAX.Low_mva050 50 Day MA
887 LFMAX.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
889 LFMAX.Close_SmoothDer Derivative of Smoothed
891 LFMAX.Close_mva200 200 Day MA
892 LFMAX.Close_mva050 50 Day MA
893 LFMAX.Volume_YoY Year over Year
894 LFMAX.Volume_YoY4 4 Year over 4 Year
895 LFMAX.Volume_YoY5 5 Year over 5 Year
896 LFMAX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
897 LFMAX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
898 LFMAX.Volume_SmoothDer Derivative of Smoothed
899 LFMAX.Volume_Log Log of
900 LFMAX.Volume_mva200 200 Day MA
901 LFMAX.Volume_mva050 50 Day MA
905 LFMAX.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
907 LFMAX.Adjusted_SmoothDer Derivative of Smoothed
909 LFMAX.Adjusted_mva200 200 Day MA
910 LFMAX.Adjusted_mva050 50 Day MA
914 LCSIX.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
916 LCSIX.Open_SmoothDer Derivative of Smoothed
919 LCSIX.Open_mva050 50 Day MA
923 LCSIX.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
925 LCSIX.High_SmoothDer Derivative of Smoothed
928 LCSIX.High_mva050 50 Day MA
932 LCSIX.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
934 LCSIX.Low_SmoothDer Derivative of Smoothed
937 LCSIX.Low_mva050 50 Day MA
941 LCSIX.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
943 LCSIX.Close_SmoothDer Derivative of Smoothed
946 LCSIX.Close_mva050 50 Day MA
947 LCSIX.Volume_YoY Year over Year
948 LCSIX.Volume_YoY4 4 Year over 4 Year
949 LCSIX.Volume_YoY5 5 Year over 5 Year
950 LCSIX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
951 LCSIX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
952 LCSIX.Volume_SmoothDer Derivative of Smoothed
953 LCSIX.Volume_Log Log of
954 LCSIX.Volume_mva200 200 Day MA
955 LCSIX.Volume_mva050 50 Day MA
959 LCSIX.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
961 LCSIX.Adjusted_SmoothDer Derivative of Smoothed
963 LCSIX.Adjusted_mva200 200 Day MA
964 LCSIX.Adjusted_mva050 50 Day MA
970 BSV.Open_SmoothDer Derivative of Smoothed
979 BSV.High_SmoothDer Derivative of Smoothed
988 BSV.Low_SmoothDer Derivative of Smoothed
997 BSV.Close_SmoothDer Derivative of Smoothed
1013 BSV.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1015 BSV.Adjusted_SmoothDer Derivative of Smoothed
1024 VBIRX.Open_SmoothDer Derivative of Smoothed
1033 VBIRX.High_SmoothDer Derivative of Smoothed
1042 VBIRX.Low_SmoothDer Derivative of Smoothed
1051 VBIRX.Close_SmoothDer Derivative of Smoothed
1055 VBIRX.Volume_YoY Year over Year
1056 VBIRX.Volume_YoY4 4 Year over 4 Year
1057 VBIRX.Volume_YoY5 5 Year over 5 Year
1058 VBIRX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1059 VBIRX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1060 VBIRX.Volume_SmoothDer Derivative of Smoothed
1061 VBIRX.Volume_Log Log of
1062 VBIRX.Volume_mva200 200 Day MA
1063 VBIRX.Volume_mva050 50 Day MA
1069 VBIRX.Adjusted_SmoothDer Derivative of Smoothed
1163 VFSUX.Volume_YoY Year over Year
1164 VFSUX.Volume_YoY4 4 Year over 4 Year
1165 VFSUX.Volume_YoY5 5 Year over 5 Year
1166 VFSUX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1167 VFSUX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1168 VFSUX.Volume_SmoothDer Derivative of Smoothed
1169 VFSUX.Volume_Log Log of
1170 VFSUX.Volume_mva200 200 Day MA
1171 VFSUX.Volume_mva050 50 Day MA
1175 VFSUX.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1179 VFSUX.Adjusted_mva200 200 Day MA
1180 VFSUX.Adjusted_mva050 50 Day MA
1217 LTUIX.Volume_YoY Year over Year
1218 LTUIX.Volume_YoY4 4 Year over 4 Year
1219 LTUIX.Volume_YoY5 5 Year over 5 Year
1220 LTUIX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1221 LTUIX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1222 LTUIX.Volume_SmoothDer Derivative of Smoothed
1223 LTUIX.Volume_Log Log of
1224 LTUIX.Volume_mva200 200 Day MA
1225 LTUIX.Volume_mva050 50 Day MA
1271 PTTPX.Volume_YoY Year over Year
1272 PTTPX.Volume_YoY4 4 Year over 4 Year
1273 PTTPX.Volume_YoY5 5 Year over 5 Year
1274 PTTPX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1275 PTTPX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1276 PTTPX.Volume_SmoothDer Derivative of Smoothed
1277 PTTPX.Volume_Log Log of
1278 PTTPX.Volume_mva200 200 Day MA
1279 PTTPX.Volume_mva050 50 Day MA
1325 NERYX.Volume_YoY Year over Year
1326 NERYX.Volume_YoY4 4 Year over 4 Year
1327 NERYX.Volume_YoY5 5 Year over 5 Year
1328 NERYX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1329 NERYX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1330 NERYX.Volume_SmoothDer Derivative of Smoothed
1331 NERYX.Volume_Log Log of
1332 NERYX.Volume_mva200 200 Day MA
1333 NERYX.Volume_mva050 50 Day MA
1348 STIGX.Open_SmoothDer Derivative of Smoothed
1357 STIGX.High_SmoothDer Derivative of Smoothed
1366 STIGX.Low_SmoothDer Derivative of Smoothed
1375 STIGX.Close_SmoothDer Derivative of Smoothed
1379 STIGX.Volume_YoY Year over Year
1380 STIGX.Volume_YoY4 4 Year over 4 Year
1381 STIGX.Volume_YoY5 5 Year over 5 Year
1382 STIGX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1383 STIGX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1384 STIGX.Volume_SmoothDer Derivative of Smoothed
1385 STIGX.Volume_Log Log of
1386 STIGX.Volume_mva200 200 Day MA
1387 STIGX.Volume_mva050 50 Day MA
1393 STIGX.Adjusted_SmoothDer Derivative of Smoothed
1402 HLGAX.Open_SmoothDer Derivative of Smoothed
1411 HLGAX.High_SmoothDer Derivative of Smoothed
1420 HLGAX.Low_SmoothDer Derivative of Smoothed
1429 HLGAX.Close_SmoothDer Derivative of Smoothed
1433 HLGAX.Volume_YoY Year over Year
1434 HLGAX.Volume_YoY4 4 Year over 4 Year
1435 HLGAX.Volume_YoY5 5 Year over 5 Year
1436 HLGAX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1437 HLGAX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1438 HLGAX.Volume_SmoothDer Derivative of Smoothed
1439 HLGAX.Volume_Log Log of
1440 HLGAX.Volume_mva200 200 Day MA
1441 HLGAX.Volume_mva050 50 Day MA
1447 HLGAX.Adjusted_SmoothDer Derivative of Smoothed
1456 FTRGX.Open_SmoothDer Derivative of Smoothed
1465 FTRGX.High_SmoothDer Derivative of Smoothed
1474 FTRGX.Low_SmoothDer Derivative of Smoothed
1483 FTRGX.Close_SmoothDer Derivative of Smoothed
1487 FTRGX.Volume_YoY Year over Year
1488 FTRGX.Volume_YoY4 4 Year over 4 Year
1489 FTRGX.Volume_YoY5 5 Year over 5 Year
1490 FTRGX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1491 FTRGX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1492 FTRGX.Volume_SmoothDer Derivative of Smoothed
1493 FTRGX.Volume_Log Log of
1494 FTRGX.Volume_mva200 200 Day MA
1495 FTRGX.Volume_mva050 50 Day MA
1501 FTRGX.Adjusted_SmoothDer Derivative of Smoothed
1541 THIIX.Volume_YoY Year over Year
1542 THIIX.Volume_YoY4 4 Year over 4 Year
1543 THIIX.Volume_YoY5 5 Year over 5 Year
1544 THIIX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1545 THIIX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1546 THIIX.Volume_SmoothDer Derivative of Smoothed
1547 THIIX.Volume_Log Log of
1548 THIIX.Volume_mva200 200 Day MA
1549 THIIX.Volume_mva050 50 Day MA
1595 PTTRX.Volume_YoY Year over Year
1596 PTTRX.Volume_YoY4 4 Year over 4 Year
1597 PTTRX.Volume_YoY5 5 Year over 5 Year
1598 PTTRX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1599 PTTRX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1600 PTTRX.Volume_SmoothDer Derivative of Smoothed
1601 PTTRX.Volume_Log Log of
1602 PTTRX.Volume_mva200 200 Day MA
1603 PTTRX.Volume_mva050 50 Day MA
1616 BFIGX.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1618 BFIGX.Open_SmoothDer Derivative of Smoothed
1625 BFIGX.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1627 BFIGX.High_SmoothDer Derivative of Smoothed
1634 BFIGX.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1636 BFIGX.Low_SmoothDer Derivative of Smoothed
1643 BFIGX.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1645 BFIGX.Close_SmoothDer Derivative of Smoothed
1649 BFIGX.Volume_YoY Year over Year
1650 BFIGX.Volume_YoY4 4 Year over 4 Year
1651 BFIGX.Volume_YoY5 5 Year over 5 Year
1652 BFIGX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1653 BFIGX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1654 BFIGX.Volume_SmoothDer Derivative of Smoothed
1655 BFIGX.Volume_Log Log of
1656 BFIGX.Volume_mva200 200 Day MA
1657 BFIGX.Volume_mva050 50 Day MA
1661 BFIGX.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1663 BFIGX.Adjusted_SmoothDer Derivative of Smoothed
1674 VTWO.Open_mva200 200 Day MA
1675 VTWO.Open_mva050 50 Day MA
1683 VTWO.High_mva200 200 Day MA
1692 VTWO.Low_mva200 200 Day MA
1693 VTWO.Low_mva050 50 Day MA
1701 VTWO.Close_mva200 200 Day MA
1702 VTWO.Close_mva050 50 Day MA
1719 VTWO.Adjusted_mva200 200 Day MA
1720 VTWO.Adjusted_mva050 50 Day MA
1727 EIFAX.Open_Log Log of
1728 EIFAX.Open_mva200 200 Day MA
1736 EIFAX.High_Log Log of
1737 EIFAX.High_mva200 200 Day MA
1745 EIFAX.Low_Log Log of
1746 EIFAX.Low_mva200 200 Day MA
1754 EIFAX.Close_Log Log of
1755 EIFAX.Close_mva200 200 Day MA
1757 EIFAX.Volume_YoY Year over Year
1758 EIFAX.Volume_YoY4 4 Year over 4 Year
1759 EIFAX.Volume_YoY5 5 Year over 5 Year
1760 EIFAX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1761 EIFAX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1762 EIFAX.Volume_SmoothDer Derivative of Smoothed
1763 EIFAX.Volume_Log Log of
1764 EIFAX.Volume_mva200 200 Day MA
1765 EIFAX.Volume_mva050 50 Day MA
1772 EIFAX.Adjusted_Log Log of
1773 EIFAX.Adjusted_mva200 200 Day MA
1774 EIFAX.Adjusted_mva050 50 Day MA
1782 ASDAX.Open_mva200 200 Day MA
1791 ASDAX.High_mva200 200 Day MA
1800 ASDAX.Low_mva200 200 Day MA
1809 ASDAX.Close_mva200 200 Day MA
1811 ASDAX.Volume_YoY Year over Year
1812 ASDAX.Volume_YoY4 4 Year over 4 Year
1813 ASDAX.Volume_YoY5 5 Year over 5 Year
1814 ASDAX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1815 ASDAX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1816 ASDAX.Volume_SmoothDer Derivative of Smoothed
1817 ASDAX.Volume_Log Log of
1818 ASDAX.Volume_mva200 200 Day MA
1819 ASDAX.Volume_mva050 50 Day MA
1823 ASDAX.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1826 ASDAX.Adjusted_Log Log of
1827 ASDAX.Adjusted_mva200 200 Day MA
1828 ASDAX.Adjusted_mva050 50 Day MA
1832 TRBUX.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1836 TRBUX.Open_mva200 200 Day MA
1841 TRBUX.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1845 TRBUX.High_mva200 200 Day MA
1850 TRBUX.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1854 TRBUX.Low_mva200 200 Day MA
1859 TRBUX.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1863 TRBUX.Close_mva200 200 Day MA
1865 TRBUX.Volume_YoY Year over Year
1866 TRBUX.Volume_YoY4 4 Year over 4 Year
1867 TRBUX.Volume_YoY5 5 Year over 5 Year
1868 TRBUX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1869 TRBUX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1870 TRBUX.Volume_SmoothDer Derivative of Smoothed
1871 TRBUX.Volume_Log Log of
1872 TRBUX.Volume_mva200 200 Day MA
1873 TRBUX.Volume_mva050 50 Day MA
1877 TRBUX.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1880 TRBUX.Adjusted_Log Log of
1881 TRBUX.Adjusted_mva200 200 Day MA
1882 TRBUX.Adjusted_mva050 50 Day MA
1886 PRWCX.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1887 PRWCX.Open_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1890 PRWCX.Open_mva200 200 Day MA
1891 PRWCX.Open_mva050 50 Day MA
1895 PRWCX.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1896 PRWCX.High_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1899 PRWCX.High_mva200 200 Day MA
1900 PRWCX.High_mva050 50 Day MA
1904 PRWCX.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1905 PRWCX.Low_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1908 PRWCX.Low_mva200 200 Day MA
1909 PRWCX.Low_mva050 50 Day MA
1913 PRWCX.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1914 PRWCX.Close_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1917 PRWCX.Close_mva200 200 Day MA
1918 PRWCX.Close_mva050 50 Day MA
1919 PRWCX.Volume_YoY Year over Year
1920 PRWCX.Volume_YoY4 4 Year over 4 Year
1921 PRWCX.Volume_YoY5 5 Year over 5 Year
1922 PRWCX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1923 PRWCX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1924 PRWCX.Volume_SmoothDer Derivative of Smoothed
1925 PRWCX.Volume_Log Log of
1926 PRWCX.Volume_mva200 200 Day MA
1927 PRWCX.Volume_mva050 50 Day MA
1931 PRWCX.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1932 PRWCX.Adjusted_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1935 PRWCX.Adjusted_mva200 200 Day MA
1936 PRWCX.Adjusted_mva050 50 Day MA
1944 ADOZX.Open_mva200 200 Day MA
1953 ADOZX.High_mva200 200 Day MA
1962 ADOZX.Low_mva200 200 Day MA
1971 ADOZX.Close_mva200 200 Day MA
1973 ADOZX.Volume_YoY Year over Year
1974 ADOZX.Volume_YoY4 4 Year over 4 Year
1975 ADOZX.Volume_YoY5 5 Year over 5 Year
1976 ADOZX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1977 ADOZX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
1978 ADOZX.Volume_SmoothDer Derivative of Smoothed
1979 ADOZX.Volume_Log Log of
1980 ADOZX.Volume_mva200 200 Day MA
1981 ADOZX.Volume_mva050 50 Day MA
1989 ADOZX.Adjusted_mva200 200 Day MA
1994 MERFX.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
1998 MERFX.Open_mva200 200 Day MA
1999 MERFX.Open_mva050 50 Day MA
2003 MERFX.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2007 MERFX.High_mva200 200 Day MA
2008 MERFX.High_mva050 50 Day MA
2012 MERFX.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2016 MERFX.Low_mva200 200 Day MA
2017 MERFX.Low_mva050 50 Day MA
2021 MERFX.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2025 MERFX.Close_mva200 200 Day MA
2026 MERFX.Close_mva050 50 Day MA
2027 MERFX.Volume_YoY Year over Year
2028 MERFX.Volume_YoY4 4 Year over 4 Year
2029 MERFX.Volume_YoY5 5 Year over 5 Year
2030 MERFX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2031 MERFX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2032 MERFX.Volume_SmoothDer Derivative of Smoothed
2033 MERFX.Volume_Log Log of
2034 MERFX.Volume_mva200 200 Day MA
2035 MERFX.Volume_mva050 50 Day MA
2039 MERFX.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2043 MERFX.Adjusted_mva200 200 Day MA
2044 MERFX.Adjusted_mva050 50 Day MA
2048 CMNIX.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2049 CMNIX.Open_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2051 CMNIX.Open_Log Log of
2052 CMNIX.Open_mva200 200 Day MA
2053 CMNIX.Open_mva050 50 Day MA
2057 CMNIX.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2058 CMNIX.High_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2060 CMNIX.High_Log Log of
2061 CMNIX.High_mva200 200 Day MA
2062 CMNIX.High_mva050 50 Day MA
2066 CMNIX.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2067 CMNIX.Low_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2069 CMNIX.Low_Log Log of
2070 CMNIX.Low_mva200 200 Day MA
2071 CMNIX.Low_mva050 50 Day MA
2075 CMNIX.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2076 CMNIX.Close_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2078 CMNIX.Close_Log Log of
2079 CMNIX.Close_mva200 200 Day MA
2080 CMNIX.Close_mva050 50 Day MA
2081 CMNIX.Volume_YoY Year over Year
2082 CMNIX.Volume_YoY4 4 Year over 4 Year
2083 CMNIX.Volume_YoY5 5 Year over 5 Year
2084 CMNIX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2085 CMNIX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2086 CMNIX.Volume_SmoothDer Derivative of Smoothed
2087 CMNIX.Volume_Log Log of
2088 CMNIX.Volume_mva200 200 Day MA
2089 CMNIX.Volume_mva050 50 Day MA
2093 CMNIX.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2094 CMNIX.Adjusted_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2096 CMNIX.Adjusted_Log Log of
2097 CMNIX.Adjusted_mva200 200 Day MA
2098 CMNIX.Adjusted_mva050 50 Day MA
2102 CIHEX.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2103 CIHEX.Open_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2105 CIHEX.Open_Log Log of
2106 CIHEX.Open_mva200 200 Day MA
2107 CIHEX.Open_mva050 50 Day MA
2111 CIHEX.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2112 CIHEX.High_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2114 CIHEX.High_Log Log of
2115 CIHEX.High_mva200 200 Day MA
2116 CIHEX.High_mva050 50 Day MA
2120 CIHEX.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2121 CIHEX.Low_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2123 CIHEX.Low_Log Log of
2124 CIHEX.Low_mva200 200 Day MA
2125 CIHEX.Low_mva050 50 Day MA
2129 CIHEX.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2130 CIHEX.Close_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2132 CIHEX.Close_Log Log of
2133 CIHEX.Close_mva200 200 Day MA
2134 CIHEX.Close_mva050 50 Day MA
2135 CIHEX.Volume_YoY Year over Year
2136 CIHEX.Volume_YoY4 4 Year over 4 Year
2137 CIHEX.Volume_YoY5 5 Year over 5 Year
2138 CIHEX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2139 CIHEX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2140 CIHEX.Volume_SmoothDer Derivative of Smoothed
2141 CIHEX.Volume_Log Log of
2142 CIHEX.Volume_mva200 200 Day MA
2143 CIHEX.Volume_mva050 50 Day MA
2147 CIHEX.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2148 CIHEX.Adjusted_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2150 CIHEX.Adjusted_Log Log of
2151 CIHEX.Adjusted_mva200 200 Day MA
2152 CIHEX.Adjusted_mva050 50 Day MA
2158 IMPCH_SmoothDer Derivative of Smoothed U.S. Imports of Goods by Customs Basis from China (Monthly, NSA)
2174 IMPMX_Smooth Savitsky-Golay Smoothed (p=3, n=365) U.S. Imports of Goods by Customs Basis from Mexico (Monthly, NSA)
2178 IMPMX_mva200 U.S. Imports of Goods by Customs Basis from Mexico (Monthly, NSA) 200 Day MA
2187 EXPMX_mva200 U.S. Exports of Goods by F.A.S. Basis to Mexico (Monthly, NSA) 200 Day MA
2194 HSN1FNSA_SmoothDer Derivative of Smoothed New One Family Houses Sold: United States (Monthly, NSA)
2196 HSN1FNSA_mva200 New One Family Houses Sold: United States (Monthly, NSA) 200 Day MA
2198 HNFSUSNSA_YoY New One Family Houses for Sale in the United States (Monthly, NSA) Year over Year
2204 HNFSUSNSA_Log Log of New One Family Houses for Sale in the United States (Monthly, NSA)
2205 HNFSUSNSA_mva200 New One Family Houses for Sale in the United States (Monthly, NSA) 200 Day MA
2206 HNFSUSNSA_mva050 New One Family Houses for Sale in the United States (Monthly, NSA) 50 Day MA
2212 BUSLOANS_SmoothDer Derivative of Smoothed Commercial and Industrial Loans, All Commercial Banks (Monthly, SA)
2221 TOTCI_SmoothDer Derivative of Smoothed Commercial and Industrial Loans, All Commercial Banks (Weekly, SA)
2230 BUSLOANSNSA_SmoothDer Derivative of Smoothed Commercial and Industrial Loans, All Commercial Banks (Monthly, NSA)
2239 REALLNNSA_SmoothDer Derivative of Smoothed Real Estate Loans, All Commercial Banks (Monthly, NSA)
2257 RELACBW027NBOG_SmoothDer Derivative of Smoothed Real Estate Loans, All Commercial Banks (Weekly, NSA)
2275 RREACBM027NBOG_SmoothDer Derivative of Smoothed Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, NSA)
2284 RREACBM027SBOG_SmoothDer Derivative of Smoothed Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, SA)
2302 RREACBW027NBOG_SmoothDer Derivative of Smoothed Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, NSA)
2309 MORTGAGE30US_Smooth Savitsky-Golay Smoothed (p=3, n=365) 30-Year Fixed Rate Mortgage Average in the United States
2311 MORTGAGE30US_SmoothDer Derivative of Smoothed 30-Year Fixed Rate Mortgage Average in the United States
2318 CONSUMERNSA_Smooth Savitsky-Golay Smoothed (p=3, n=365) Consumer Loans, All Commercial Banks
2329 TOTLLNSA_SmoothDer Derivative of Smoothed Loans and Leases in Bank Credit, All Commercial Banks
2336 DPSACBW027SBOG_Smooth Savitsky-Golay Smoothed (p=3, n=365) Deposits, All Commercial Banks
2338 DPSACBW027SBOG_SmoothDer Derivative of Smoothed Deposits, All Commercial Banks
2340 DPSACBW027SBOG_mva200 Deposits, All Commercial Banks 200 Day MA
2341 DPSACBW027SBOG_mva050 Deposits, All Commercial Banks 50 Day MA
2342 DRCLACBS_YoY Delinquency Rate on Consumer Loans, All Commercial Banks, SA Year over Year
2356 TOTCINSA_SmoothDer Derivative of Smoothed Commercial and Industrial Loans, All Commercial Banks (Weekly, NSA)
2361 SRPSABSNNCB_YoY4 Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) 4 Year over 4 Year
2365 SRPSABSNNCB_SmoothDer Derivative of Smoothed Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA)
2366 SRPSABSNNCB_Log Log of Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA)
2375 ASTLL_Log Log of All sectors; total loans; liability, Level (NSA)
2376 ASTLL_mva200 All sectors; total loans; liability, Level (NSA) 200 Day MA
2377 ASTLL_mva050 All sectors; total loans; liability, Level (NSA) 50 Day MA
2378 FBDILNECA_YoY Domestic financial sectors; depository institution loans n.e.c.; asset, Level (NSA) Year over Year
2384 FBDILNECA_Log Log of Domestic financial sectors; depository institution loans n.e.c.; asset, Level (NSA)
2386 FBDILNECA_mva050 Domestic financial sectors; depository institution loans n.e.c.; asset, Level (NSA) 50 Day MA
2393 ASOLAL_Log Log of All sectors; other loans and advances; liability, Level (NSA)
2394 ASOLAL_mva200 All sectors; other loans and advances; liability, Level (NSA) 200 Day MA
2395 ASOLAL_mva050 All sectors; other loans and advances; liability, Level (NSA) 50 Day MA
2402 ASTMA_Log Log of All sectors; total mortgages; asset, Level (NSA)
2403 ASTMA_mva200 All sectors; total mortgages; asset, Level (NSA) 200 Day MA
2404 ASTMA_mva050 All sectors; total mortgages; asset, Level (NSA) 50 Day MA
2411 ASHMA_Log Log of All sectors; home mortgages; asset, Level (NSA)
2412 ASHMA_mva200 All sectors; home mortgages; asset, Level (NSA) 200 Day MA
2413 ASHMA_mva050 All sectors; home mortgages; asset, Level (NSA) 50 Day MA
2420 ASMRMA_Log Log of All sectors; multifamily residential mortgages; asset, Level (NSA)
2421 ASMRMA_mva200 All sectors; multifamily residential mortgages; asset, Level (NSA) 200 Day MA
2422 ASMRMA_mva050 All sectors; multifamily residential mortgages; asset, Level (NSA) 50 Day MA
2429 ASCMA_Log Log of All sectors; commercial mortgages; asset, Level (NSA)
2430 ASCMA_mva200 All sectors; commercial mortgages; asset, Level (NSA) 200 Day MA
2431 ASCMA_mva050 All sectors; commercial mortgages; asset, Level (NSA) 50 Day MA
2438 ASFMA_Log Log of All sectors; farm mortgages; asset, Level (NSA)
2439 ASFMA_mva200 All sectors; farm mortgages; asset, Level (NSA) 200 Day MA
2440 ASFMA_mva050 All sectors; farm mortgages; asset, Level (NSA) 50 Day MA
2456 FBDSILQ027S_Log Log of Domestic financial sectors debt securities; liability, Level (NSA)
2457 FBDSILQ027S_mva200 Domestic financial sectors debt securities; liability, Level (NSA) 200 Day MA
2458 FBDSILQ027S_mva050 Domestic financial sectors debt securities; liability, Level (NSA) 50 Day MA
2459 FBLL_YoY Domestic financial sectors loans; liability, Level (NSA) Year over Year
2474 NCBDBIQ027S_Log Log of Nonfinancial corporate business; debt securities; liability, Level
2475 NCBDBIQ027S_mva200 Nonfinancial corporate business; debt securities; liability, Level 200 Day MA
2476 NCBDBIQ027S_mva050 Nonfinancial corporate business; debt securities; liability, Level 50 Day MA
2484 DGS10_mva200 10-Year Treasury Constant Maturity Rate 200 Day MA
2493 TNX.Open_mva200 200 Day MA
2502 TNX.High_mva200 200 Day MA
2511 TNX.Low_mva200 200 Day MA
2520 TNX.Close_mva200 200 Day MA
2522 TNX.Volume_YoY Year over Year
2523 TNX.Volume_YoY4 4 Year over 4 Year
2524 TNX.Volume_YoY5 5 Year over 5 Year
2525 TNX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2526 TNX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2527 TNX.Volume_SmoothDer Derivative of Smoothed
2528 TNX.Volume_Log Log of
2529 TNX.Volume_mva200 200 Day MA
2530 TNX.Volume_mva050 50 Day MA
2538 TNX.Adjusted_mva200 200 Day MA
2541 CLF.Open_YoY4 4 Year over 4 Year
2543 CLF.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2544 CLF.Open_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2546 CLF.Open_Log Log of
2547 CLF.Open_mva200 200 Day MA
2548 CLF.Open_mva050 50 Day MA
2550 CLF.High_YoY4 4 Year over 4 Year
2552 CLF.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2553 CLF.High_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2555 CLF.High_Log Log of
2556 CLF.High_mva200 200 Day MA
2557 CLF.High_mva050 50 Day MA
2559 CLF.Low_YoY4 4 Year over 4 Year
2561 CLF.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2562 CLF.Low_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2564 CLF.Low_Log Log of
2565 CLF.Low_mva200 200 Day MA
2566 CLF.Low_mva050 50 Day MA
2568 CLF.Close_YoY4 4 Year over 4 Year
2570 CLF.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2571 CLF.Close_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2573 CLF.Close_Log Log of
2574 CLF.Close_mva200 200 Day MA
2575 CLF.Close_mva050 50 Day MA
2582 CLF.Volume_Log Log of
2583 CLF.Volume_mva200 200 Day MA
2586 CLF.Adjusted_YoY4 4 Year over 4 Year
2588 CLF.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2589 CLF.Adjusted_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2591 CLF.Adjusted_Log Log of
2592 CLF.Adjusted_mva200 200 Day MA
2593 CLF.Adjusted_mva050 50 Day MA
2601 DGS30_mva200 10-Year Treasury Constant Maturity Rate 200 Day MA
2615 DGS2_Smooth Savitsky-Golay Smoothed (p=3, n=365) 2-Year Treasury Constant Maturity Rate
2636 DTB3_Log Log of 3-Month Treasury Bill: Secondary Market Rate (Daily)
2645 IRX.Open_Log Log of
2654 IRX.High_Log Log of
2663 IRX.Low_Log Log of
2672 IRX.Close_Log Log of
2675 IRX.Volume_YoY Year over Year
2676 IRX.Volume_YoY4 4 Year over 4 Year
2677 IRX.Volume_YoY5 5 Year over 5 Year
2678 IRX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2679 IRX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2680 IRX.Volume_SmoothDer Derivative of Smoothed
2681 IRX.Volume_Log Log of
2682 IRX.Volume_mva200 200 Day MA
2683 IRX.Volume_mva050 50 Day MA
2690 IRX.Adjusted_Log Log of
2694 DCOILWTICO_YoY4 Crude Oil Prices: West Texas Intermediate (WTI) Cushing, Oklahoma 4 Year over 4 Year
2696 DCOILWTICO_Smooth Savitsky-Golay Smoothed (p=3, n=365) Crude Oil Prices: West Texas Intermediate (WTI) Cushing, Oklahoma
2699 DCOILWTICO_Log Log of Crude Oil Prices: West Texas Intermediate (WTI) Cushing, Oklahoma
2700 DCOILWTICO_mva200 Crude Oil Prices: West Texas Intermediate (WTI) Cushing, Oklahoma 200 Day MA
2701 DCOILWTICO_mva050 Crude Oil Prices: West Texas Intermediate (WTI) Cushing, Oklahoma 50 Day MA
2709 DCOILBRENTEU_mva200 Crude Oil Prices: Brent - Europe 200 Day MA
2710 DCOILBRENTEU_mva050 Crude Oil Prices: Brent - Europe 50 Day MA
2714 NEWORDER_Smooth Savitsky-Golay Smoothed (p=3, n=365) Manufacturers’ New Orders: Nondefense Capital Goods Excluding Aircraft
2717 NEWORDER_Log Log of Manufacturers’ New Orders: Nondefense Capital Goods Excluding Aircraft
2718 NEWORDER_mva200 Manufacturers’ New Orders: Nondefense Capital Goods Excluding Aircraft 200 Day MA
2719 NEWORDER_mva050 Manufacturers’ New Orders: Nondefense Capital Goods Excluding Aircraft 50 Day MA
2727 ALTSALES_mva200 Light Weight Vehicle Sales: Autos and Light Trucks 200 Day MA
2734 ICSA_SmoothDer Derivative of Smoothed Initial Jobless Claims
2741 GSPC.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2744 GSPC.Open_Log Log of
2745 GSPC.Open_mva200 200 Day MA
2746 GSPC.Open_mva050 50 Day MA
2750 GSPC.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2754 GSPC.High_mva200 200 Day MA
2755 GSPC.High_mva050 50 Day MA
2759 GSPC.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2762 GSPC.Low_Log Log of
2763 GSPC.Low_mva200 200 Day MA
2764 GSPC.Low_mva050 50 Day MA
2768 GSPC.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2769 GSPC.Close_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2771 GSPC.Close_Log Log of
2772 GSPC.Close_mva200 200 Day MA
2773 GSPC.Close_mva050 50 Day MA
2786 GSPC.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2787 GSPC.Adjusted_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2789 GSPC.Adjusted_Log Log of
2790 GSPC.Adjusted_mva200 200 Day MA
2791 GSPC.Adjusted_mva050 50 Day MA
2795 RLG.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2799 RLG.Open_mva200 200 Day MA
2804 RLG.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2808 RLG.High_mva200 200 Day MA
2813 RLG.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2817 RLG.Low_mva200 200 Day MA
2822 RLG.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2826 RLG.Close_mva200 200 Day MA
2828 RLG.Volume_YoY Year over Year
2829 RLG.Volume_YoY4 4 Year over 4 Year
2830 RLG.Volume_YoY5 5 Year over 5 Year
2831 RLG.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2832 RLG.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2833 RLG.Volume_SmoothDer Derivative of Smoothed
2834 RLG.Volume_Log Log of
2835 RLG.Volume_mva200 200 Day MA
2836 RLG.Volume_mva050 50 Day MA
2840 RLG.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2844 RLG.Adjusted_mva200 200 Day MA
2849 DJI.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2853 DJI.Open_mva200 200 Day MA
2854 DJI.Open_mva050 50 Day MA
2858 DJI.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2862 DJI.High_mva200 200 Day MA
2863 DJI.High_mva050 50 Day MA
2867 DJI.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2871 DJI.Low_mva200 200 Day MA
2872 DJI.Low_mva050 50 Day MA
2876 DJI.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2880 DJI.Close_mva200 200 Day MA
2881 DJI.Close_mva050 50 Day MA
2894 DJI.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2898 DJI.Adjusted_mva200 200 Day MA
2899 DJI.Adjusted_mva050 50 Day MA
2902 STOXX50E.Open_YoY5 5 Year over 5 Year
2903 STOXX50E.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2907 STOXX50E.Open_mva200 200 Day MA
2908 STOXX50E.Open_mva050 50 Day MA
2912 STOXX50E.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2913 STOXX50E.High_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2915 STOXX50E.High_Log Log of
2916 STOXX50E.High_mva200 200 Day MA
2917 STOXX50E.High_mva050 50 Day MA
2921 STOXX50E.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2922 STOXX50E.Low_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2924 STOXX50E.Low_Log Log of
2925 STOXX50E.Low_mva200 200 Day MA
2926 STOXX50E.Low_mva050 50 Day MA
2930 STOXX50E.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2931 STOXX50E.Close_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2933 STOXX50E.Close_Log Log of
2934 STOXX50E.Close_mva200 200 Day MA
2935 STOXX50E.Close_mva050 50 Day MA
2942 STOXX50E.Volume_Log Log of
2948 STOXX50E.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2949 STOXX50E.Adjusted_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
2951 STOXX50E.Adjusted_Log Log of
2952 STOXX50E.Adjusted_mva200 200 Day MA
2953 STOXX50E.Adjusted_mva050 50 Day MA
2957 EFA.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2961 EFA.Open_mva200 200 Day MA
2962 EFA.Open_mva050 50 Day MA
2966 EFA.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2970 EFA.High_mva200 200 Day MA
2971 EFA.High_mva050 50 Day MA
2975 EFA.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2979 EFA.Low_mva200 200 Day MA
2980 EFA.Low_mva050 50 Day MA
2984 EFA.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
2988 EFA.Close_mva200 200 Day MA
2989 EFA.Close_mva050 50 Day MA
3002 EFA.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3003 EFA.Adjusted_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
3005 EFA.Adjusted_Log Log of
3006 EFA.Adjusted_mva200 200 Day MA
3007 EFA.Adjusted_mva050 50 Day MA
3014 GDP_Log Log of Gross Domestic Product
3015 GDP_mva200 Gross Domestic Product 200 Day MA
3016 GDP_mva050 Gross Domestic Product 50 Day MA
3023 FNDEFX_Log Log of Federal Government: Nondefense Consumption Expenditures and Gross Investment (SA, Annual Rate)
3024 FNDEFX_mva200 Federal Government: Nondefense Consumption Expenditures and Gross Investment (SA, Annual Rate) 200 Day MA
3025 FNDEFX_mva050 Federal Government: Nondefense Consumption Expenditures and Gross Investment (SA, Annual Rate) 50 Day MA
3029 FDEFX_Smooth Savitsky-Golay Smoothed (p=3, n=365) Federal Government: National Defense Consumption Expenditures and Gross Investment (SA, Annual Rate)
3032 FDEFX_Log Log of Federal Government: National Defense Consumption Expenditures and Gross Investment (SA, Annual Rate)
3033 FDEFX_mva200 Federal Government: National Defense Consumption Expenditures and Gross Investment (SA, Annual Rate) 200 Day MA
3034 FDEFX_mva050 Federal Government: National Defense Consumption Expenditures and Gross Investment (SA, Annual Rate) 50 Day MA
3040 GDPNOW_SmoothDer Derivative of Smoothed Fed Atlanta GDPNow
3041 GDPNOW_Log Log of Fed Atlanta GDPNow
3043 GDPNOW_mva050 Fed Atlanta GDPNow 50 Day MA
3050 GDPC1_Log Log of Real Gross Domestic Product
3051 GDPC1_mva200 Real Gross Domestic Product 200 Day MA
3052 GDPC1_mva050 Real Gross Domestic Product 50 Day MA
3059 GDPDEF_Log Log of Gross Domestic Product: Implicit Price Deflator
3060 GDPDEF_mva200 Gross Domestic Product: Implicit Price Deflator 200 Day MA
3061 GDPDEF_mva050 Gross Domestic Product: Implicit Price Deflator 50 Day MA
3065 VIG.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3069 VIG.Open_mva200 200 Day MA
3070 VIG.Open_mva050 50 Day MA
3074 VIG.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3078 VIG.High_mva200 200 Day MA
3079 VIG.High_mva050 50 Day MA
3083 VIG.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3087 VIG.Low_mva200 200 Day MA
3088 VIG.Low_mva050 50 Day MA
3092 VIG.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3096 VIG.Close_mva200 200 Day MA
3097 VIG.Close_mva050 50 Day MA
3110 VIG.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3114 VIG.Adjusted_mva200 200 Day MA
3115 VIG.Adjusted_mva050 50 Day MA
3116 WLRRAL_YoY Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Year over Year
3118 WLRRAL_YoY5 Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) 5 Year over 5 Year
3119 WLRRAL_Smooth Savitsky-Golay Smoothed (p=3, n=365) Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA)
3121 WLRRAL_SmoothDer Derivative of Smoothed Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA)
3122 WLRRAL_Log Log of Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA)
3123 WLRRAL_mva200 Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) 200 Day MA
3124 WLRRAL_mva050 Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) 50 Day MA
3137 GPDI_Smooth Savitsky-Golay Smoothed (p=3, n=365) Gross Private Domestic Investment
3145 W790RC1Q027SBEA_YoY5 Net domestic investment: Private: Domestic busines 5 Year over 5 Year
3149 W790RC1Q027SBEA_Log Log of Net domestic investment: Private: Domestic busines
3154 MZMV_YoY5 Velocity of MZM Money Stock 5 Year over 5 Year
3155 MZMV_Smooth Savitsky-Golay Smoothed (p=3, n=365) Velocity of MZM Money Stock
3158 MZMV_Log Log of Velocity of MZM Money Stock
3160 MZMV_mva050 Velocity of MZM Money Stock 50 Day MA
3166 M1_SmoothDer Derivative of Smoothed M1 Money Stock
3168 M1_mva200 M1 Money Stock 200 Day MA
3175 M2_SmoothDer Derivative of Smoothed M2 Money Stock
3177 M2_mva200 M2 Money Stock 200 Day MA
3184 OPHNFB_SmoothDer Derivative of Smoothed Nonfarm Business Sector: Real Output Per Hour of All Persons
3185 OPHNFB_Log Log of Nonfarm Business Sector: Real Output Per Hour of All Persons
3186 OPHNFB_mva200 Nonfarm Business Sector: Real Output Per Hour of All Persons 200 Day MA
3187 OPHNFB_mva050 Nonfarm Business Sector: Real Output Per Hour of All Persons 50 Day MA
3191 IPMAN_Smooth Savitsky-Golay Smoothed (p=3, n=365) Industrial Production: Manufacturing (NAICS)
3195 IPMAN_mva200 Industrial Production: Manufacturing (NAICS) 200 Day MA
3196 IPMAN_mva050 Industrial Production: Manufacturing (NAICS) 50 Day MA
3200 IWD.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3204 IWD.Open_mva200 200 Day MA
3205 IWD.Open_mva050 50 Day MA
3209 IWD.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3213 IWD.High_mva200 200 Day MA
3214 IWD.High_mva050 50 Day MA
3218 IWD.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3222 IWD.Low_mva200 200 Day MA
3223 IWD.Low_mva050 50 Day MA
3227 IWD.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3231 IWD.Close_mva200 200 Day MA
3232 IWD.Close_mva050 50 Day MA
3245 IWD.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3249 IWD.Adjusted_mva200 200 Day MA
3250 IWD.Adjusted_mva050 50 Day MA
3251 GS5_YoY 5-Year Treasury Constant Maturity Rate Year over Year
3253 GS5_YoY5 5-Year Treasury Constant Maturity Rate 5 Year over 5 Year
3258 GS5_mva200 5-Year Treasury Constant Maturity Rate 200 Day MA
3265 PSAVERT_SmoothDer Derivative of Smoothed Personal Saving Rate
3267 PSAVERT_mva200 Personal Saving Rate 200 Day MA
3274 VIXCLS_SmoothDer Derivative of Smoothed CBOE Volatility Index
3283 VXX.Open_SmoothDer Derivative of Smoothed
3292 VXX.High_SmoothDer Derivative of Smoothed
3301 VXX.Low_SmoothDer Derivative of Smoothed
3310 VXX.Close_SmoothDer Derivative of Smoothed
3315 VXX.Volume_YoY4 4 Year over 4 Year
3316 VXX.Volume_YoY5 5 Year over 5 Year
3317 VXX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3320 VXX.Volume_Log Log of
3321 VXX.Volume_mva200 200 Day MA
3328 VXX.Adjusted_SmoothDer Derivative of Smoothed
3347 GFDEBTN_Log Log of Federal Debt: Total Public Debt
3348 GFDEBTN_mva200 Federal Debt: Total Public Debt 200 Day MA
3349 GFDEBTN_mva050 Federal Debt: Total Public Debt 50 Day MA
3375 UMDMNO_mva200 Manufacturers’ New Orders: Durable Goods (NSA) 200 Day MA
3384 DGORDER_mva200 Manufacturers’ New Orders: Durable Goods (SA) 200 Day MA
3392 CSUSHPINSA_Log Log of S&P/Case-Shiller U.S. National Home Price Index (NSA)
3393 CSUSHPINSA_mva200 S&P/Case-Shiller U.S. National Home Price Index (NSA) 200 Day MA
3394 CSUSHPINSA_mva050 S&P/Case-Shiller U.S. National Home Price Index (NSA) 50 Day MA
3400 GFDEGDQ188S_SmoothDer Derivative of Smoothed Federal Debt: Total Public Debt as Percent of Gross Domestic Product
3409 FYFSD_SmoothDer Derivative of Smoothed Federal Surplus or Deficit
3410 FYFSD_Log Log of Federal Surplus or Deficit
3412 FYFSD_mva050 Federal Surplus or Deficit 50 Day MA
3417 FYFSGDA188S_Smooth.short Savitsky-Golay Smoothed (p=3, n=15) Federal Surplus or Deficit [-] as Percent of Gross Domestic Product
3419 FYFSGDA188S_Log Log of Federal Surplus or Deficit [-] as Percent of Gross Domestic Product
3420 FYFSGDA188S_mva200 Federal Surplus or Deficit [-] as Percent of Gross Domestic Product 200 Day MA
3421 FYFSGDA188S_mva050 Federal Surplus or Deficit [-] as Percent of Gross Domestic Product 50 Day MA
3425 GOLDAMGBD228NLBM_Smooth Savitsky-Golay Smoothed (p=3, n=365) Gold Fixing Price 10:30 A.M. (London time) in London Bullion Market
3427 GOLDAMGBD228NLBM_SmoothDer Derivative of Smoothed Gold Fixing Price 10:30 A.M. (London time) in London Bullion Market
3434 GDX.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3436 GDX.Open_SmoothDer Derivative of Smoothed
3439 GDX.Open_mva050 50 Day MA
3443 GDX.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3445 GDX.High_SmoothDer Derivative of Smoothed
3448 GDX.High_mva050 50 Day MA
3452 GDX.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3454 GDX.Low_SmoothDer Derivative of Smoothed
3457 GDX.Low_mva050 50 Day MA
3461 GDX.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3463 GDX.Close_SmoothDer Derivative of Smoothed
3466 GDX.Close_mva050 50 Day MA
3479 GDX.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3481 GDX.Adjusted_SmoothDer Derivative of Smoothed
3484 GDX.Adjusted_mva050 50 Day MA
3488 XLE.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3492 XLE.Open_mva200 200 Day MA
3493 XLE.Open_mva050 50 Day MA
3501 XLE.High_mva200 200 Day MA
3502 XLE.High_mva050 50 Day MA
3506 XLE.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3507 XLE.Low_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
3510 XLE.Low_mva200 200 Day MA
3511 XLE.Low_mva050 50 Day MA
3515 XLE.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3519 XLE.Close_mva200 200 Day MA
3520 XLE.Close_mva050 50 Day MA
3533 XLE.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3537 XLE.Adjusted_mva200 200 Day MA
3538 XLE.Adjusted_mva050 50 Day MA
3540 GSG.Open_YoY4 4 Year over 4 Year
3542 GSG.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3543 GSG.Open_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
3546 GSG.Open_mva200 200 Day MA
3547 GSG.Open_mva050 50 Day MA
3549 GSG.High_YoY4 4 Year over 4 Year
3551 GSG.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3554 GSG.High_Log Log of
3555 GSG.High_mva200 200 Day MA
3556 GSG.High_mva050 50 Day MA
3558 GSG.Low_YoY4 4 Year over 4 Year
3560 GSG.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3561 GSG.Low_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
3563 GSG.Low_Log Log of
3564 GSG.Low_mva200 200 Day MA
3565 GSG.Low_mva050 50 Day MA
3569 GSG.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3570 GSG.Close_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
3572 GSG.Close_Log Log of
3573 GSG.Close_mva200 200 Day MA
3574 GSG.Close_mva050 50 Day MA
3582 GSG.Volume_mva200 200 Day MA
3587 GSG.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3588 GSG.Adjusted_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
3590 GSG.Adjusted_Log Log of
3591 GSG.Adjusted_mva200 200 Day MA
3592 GSG.Adjusted_mva050 50 Day MA
3596 WALCL_Smooth Savitsky-Golay Smoothed (p=3, n=365) All Federal Reserve Banks: Total Assets
3598 WALCL_SmoothDer Derivative of Smoothed All Federal Reserve Banks: Total Assets
3599 WALCL_Log Log of All Federal Reserve Banks: Total Assets
3600 WALCL_mva200 All Federal Reserve Banks: Total Assets 200 Day MA
3601 WALCL_mva050 All Federal Reserve Banks: Total Assets 50 Day MA
3603 OUTMS_YoY4 Manufacturing Sector: Real Output 4 Year over 4 Year
3605 OUTMS_Smooth Savitsky-Golay Smoothed (p=3, n=365) Manufacturing Sector: Real Output
3608 OUTMS_Log Log of Manufacturing Sector: Real Output
3609 OUTMS_mva200 Manufacturing Sector: Real Output 200 Day MA
3610 OUTMS_mva050 Manufacturing Sector: Real Output 50 Day MA
3618 MANEMP_mva200 All Employees: Manufacturing 200 Day MA
3619 MANEMP_mva050 All Employees: Manufacturing 50 Day MA
3621 PRS30006163_YoY4 Manufacturing Sector: Real Output Per Person 4 Year over 4 Year
3622 PRS30006163_YoY5 Manufacturing Sector: Real Output Per Person 5 Year over 5 Year
3623 PRS30006163_Smooth Savitsky-Golay Smoothed (p=3, n=365) Manufacturing Sector: Real Output Per Person
3626 PRS30006163_Log Log of Manufacturing Sector: Real Output Per Person
3627 PRS30006163_mva200 Manufacturing Sector: Real Output Per Person 200 Day MA
3628 PRS30006163_mva050 Manufacturing Sector: Real Output Per Person 50 Day MA
3634 BAMLC0A3CA_SmoothDer Derivative of Smoothed ICE BofAML US Corporate A Option-Adjusted Spread
3638 AAA_YoY Moody’s Seasoned Aaa Corporate Bond Yield Year over Year
3640 AAA_YoY5 Moody’s Seasoned Aaa Corporate Bond Yield 5 Year over 5 Year
3645 AAA_mva200 Moody’s Seasoned Aaa Corporate Bond Yield 200 Day MA
3661 SOFRVOL_SmoothDer Derivative of Smoothed Secured Overnight Financing Volume
3689 SOFR25_Log Log of Secured Overnight Financing Rate: 25th Percentile
3698 SOFR1_Log Log of Secured Overnight Financing Rate: 1st Percentile
3752 RPONTSYD_Log Log of Overnight Repurchase Agreements: Treasury Securities Purchased by the Federal Reserve in the Temporary Open Market Operations
3754 RPONTSYD_mva050 Overnight Repurchase Agreements: Treasury Securities Purchased by the Federal Reserve in the Temporary Open Market Operations 50 Day MA
3755 IOER_YoY Interest Rate on Excess Reserves Year over Year
3757 IOER_YoY5 Interest Rate on Excess Reserves 5 Year over 5 Year
3761 IOER_Log Log of Interest Rate on Excess Reserves
3762 IOER_mva200 Interest Rate on Excess Reserves 200 Day MA
3763 IOER_mva050 Interest Rate on Excess Reserves 50 Day MA
3767 WRESBAL_Smooth Savitsky-Golay Smoothed (p=3, n=365) Reserve Balances with Federal Reserve Banks
3769 WRESBAL_SmoothDer Derivative of Smoothed Reserve Balances with Federal Reserve Banks
3771 WRESBAL_mva200 Reserve Balances with Federal Reserve Banks 200 Day MA
3778 EXCSRESNW_SmoothDer Derivative of Smoothed Excess Reserves of Depository Institutions
3779 EXCSRESNW_Log Log of Excess Reserves of Depository Institutions
3781 EXCSRESNW_mva050 Excess Reserves of Depository Institutions 50 Day MA
3782 ECBASSETS_YoY Central Bank Assets for Euro Area (11-19 Countries) Year over Year
3788 ECBASSETS_Log Log of Central Bank Assets for Euro Area (11-19 Countries)
3789 ECBASSETS_mva200 Central Bank Assets for Euro Area (11-19 Countries) 200 Day MA
3790 ECBASSETS_mva050 Central Bank Assets for Euro Area (11-19 Countries) 50 Day MA
3794 EUNNGDP_Smooth Savitsky-Golay Smoothed (p=3, n=365) Gross Domestic Product (Euro/ECU series) for Euro Area (19 Countries)
3797 EUNNGDP_Log Log of Gross Domestic Product (Euro/ECU series) for Euro Area (19 Countries)
3798 EUNNGDP_mva200 Gross Domestic Product (Euro/ECU series) for Euro Area (19 Countries) 200 Day MA
3799 EUNNGDP_mva050 Gross Domestic Product (Euro/ECU series) for Euro Area (19 Countries) 50 Day MA
3803 CEU0600000007_Smooth Savitsky-Golay Smoothed (p=3, n=365) Average Weekly Hours of Production and Nonsupervisory Employees: Goods-Producing
3806 CEU0600000007_Log Log of Average Weekly Hours of Production and Nonsupervisory Employees: Goods-Producing
3808 CEU0600000007_mva050 Average Weekly Hours of Production and Nonsupervisory Employees: Goods-Producing 50 Day MA
3824 CURRENCY_Log Log of Currency Component of M1 (Seasonally Adjusted)
3825 CURRENCY_mva200 Currency Component of M1 (Seasonally Adjusted) 200 Day MA
3826 CURRENCY_mva050 Currency Component of M1 (Seasonally Adjusted) 50 Day MA
3830 WCURRNS_Smooth Savitsky-Golay Smoothed (p=3, n=365) Currency Component of M1
3832 WCURRNS_SmoothDer Derivative of Smoothed Currency Component of M1
3833 WCURRNS_Log Log of Currency Component of M1
3834 WCURRNS_mva200 Currency Component of M1 200 Day MA
3835 WCURRNS_mva050 Currency Component of M1 50 Day MA
3838 BOGMBASE_YoY5 Monetary Base; Total 5 Year over 5 Year
3839 BOGMBASE_Smooth Savitsky-Golay Smoothed (p=3, n=365) Monetary Base; Total
3841 BOGMBASE_SmoothDer Derivative of Smoothed Monetary Base; Total
3842 BOGMBASE_Log Log of Monetary Base; Total
3843 BOGMBASE_mva200 Monetary Base; Total 200 Day MA
3844 BOGMBASE_mva050 Monetary Base; Total 50 Day MA
3850 PRS88003193_SmoothDer Derivative of Smoothed Nonfinancial Corporations Sector: Unit Profits
3860 PPIACO_Log Log of Producer Price Index for All Commodities
3861 PPIACO_mva200 Producer Price Index for All Commodities 200 Day MA
3862 PPIACO_mva050 Producer Price Index for All Commodities 50 Day MA
3869 PCUOMFGOMFG_Log Log of Producer Price Index by Industry: Total Manufacturing Industries
3870 PCUOMFGOMFG_mva200 Producer Price Index by Industry: Total Manufacturing Industries 200 Day MA
3871 PCUOMFGOMFG_mva050 Producer Price Index by Industry: Total Manufacturing Industries 50 Day MA
3878 POPTHM_Smooth Savitsky-Golay Smoothed (p=3, n=365) Population (U.S.)
3879 POPTHM_Smooth Savitsky-Golay Smoothed (p=3, n=365) Population (U.S.)
3884 POPTHM_Log Log of Population (U.S.)
3885 POPTHM_Log Log of Population (U.S.)
3886 POPTHM_mva200 Population (U.S.) 200 Day MA
3887 POPTHM_mva200 Population (U.S.) 200 Day MA
3888 POPTHM_mva050 Population (U.S.) 50 Day MA
3889 POPTHM_mva050 Population (U.S.) 50 Day MA
3896 POPTHM.1_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3897 POPTHM.1_Smooth Savitsky-Golay Smoothed (p=3, n=365)
3902 POPTHM.1_Log Log of
3903 POPTHM.1_Log Log of
3904 POPTHM.1_mva200 200 Day MA
3905 POPTHM.1_mva200 200 Day MA
3906 POPTHM.1_mva050 50 Day MA
3907 POPTHM.1_mva050 50 Day MA
3911 CLF16OV_Smooth Savitsky-Golay Smoothed (p=3, n=365) Civilian Labor Force Level, SA
3915 CLF16OV_mva200 Civilian Labor Force Level, SA 200 Day MA
3920 LNU01000000_Smooth Savitsky-Golay Smoothed (p=3, n=365) Civilian Labor Force Level, NSA
3923 LNU01000000_Log Log of Civilian Labor Force Level, NSA
3925 LNU01000000_mva050 Civilian Labor Force Level, NSA 50 Day MA
3931 LNU03000000_SmoothDer Derivative of Smoothed Unemployment Level (NSA)
3940 UNEMPLOY_SmoothDer Derivative of Smoothed Unemployment Level, seasonally adjusted
3947 RSAFS_Smooth Savitsky-Golay Smoothed (p=3, n=365) Advance Retail Sales: Retail and Food Services
3950 RSAFS_Log Log of Advance Retail Sales: Retail and Food Services
3951 RSAFS_mva200 Advance Retail Sales: Retail and Food Services 200 Day MA
3952 RSAFS_mva050 Advance Retail Sales: Retail and Food Services 50 Day MA
3954 FRGSHPUSM649NCIS_YoY4 Cass Freight Index: Shipments 4 Year over 4 Year
3956 FRGSHPUSM649NCIS_Smooth Savitsky-Golay Smoothed (p=3, n=365) Cass Freight Index: Shipments
3959 FRGSHPUSM649NCIS_Log Log of Cass Freight Index: Shipments
3960 FRGSHPUSM649NCIS_mva200 Cass Freight Index: Shipments 200 Day MA
3961 FRGSHPUSM649NCIS_mva050 Cass Freight Index: Shipments 50 Day MA
3965 BOPGTB_Smooth Savitsky-Golay Smoothed (p=3, n=365) Trade Balance: Goods, Balance of Payments Basis (SA)
3967 BOPGTB_SmoothDer Derivative of Smoothed Trade Balance: Goods, Balance of Payments Basis (SA)
3968 BOPGTB_Log Log of Trade Balance: Goods, Balance of Payments Basis (SA)
3971 TERMCBPER24NS_YoY Finance Rate on Personal Loans at Commercial Banks, 24 Month Loan Year over Year
3973 TERMCBPER24NS_YoY5 Finance Rate on Personal Loans at Commercial Banks, 24 Month Loan 5 Year over 5 Year
3986 A065RC1A027NBEA_Log Log of Personal income (NSA)
3987 A065RC1A027NBEA_mva200 Personal income (NSA) 200 Day MA
3988 A065RC1A027NBEA_mva050 Personal income (NSA) 50 Day MA
3996 PI_mva200 Personal income (SA) 200 Day MA
4001 PCE_Smooth Savitsky-Golay Smoothed (p=3, n=365) Personal Consumption Expenditures (SA)
4004 PCE_Log Log of Personal Consumption Expenditures (SA)
4005 PCE_mva200 Personal Consumption Expenditures (SA) 200 Day MA
4006 PCE_mva050 Personal Consumption Expenditures (SA) 50 Day MA
4013 A053RC1Q027SBEA_Log Log of National income: Corporate profits before tax (without IVA and CCAdj)
4014 A053RC1Q027SBEA_mva200 National income: Corporate profits before tax (without IVA and CCAdj) 200 Day MA
4015 A053RC1Q027SBEA_mva050 National income: Corporate profits before tax (without IVA and CCAdj) 50 Day MA
4019 CPROFIT_Smooth Savitsky-Golay Smoothed (p=3, n=365) Corporate Profits with Inventory Valuation Adjustment (IVA) and Capital Consumption Adjustment (CCAdj)
4021 CPROFIT_SmoothDer Derivative of Smoothed Corporate Profits with Inventory Valuation Adjustment (IVA) and Capital Consumption Adjustment (CCAdj)
4028 SPY.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4031 SPY.Open_Log Log of
4032 SPY.Open_mva200 200 Day MA
4033 SPY.Open_mva050 50 Day MA
4037 SPY.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4041 SPY.High_mva200 200 Day MA
4042 SPY.High_mva050 50 Day MA
4046 SPY.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4049 SPY.Low_Log Log of
4050 SPY.Low_mva200 200 Day MA
4051 SPY.Low_mva050 50 Day MA
4055 SPY.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4056 SPY.Close_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
4058 SPY.Close_Log Log of
4059 SPY.Close_mva200 200 Day MA
4060 SPY.Close_mva050 50 Day MA
4073 SPY.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4074 SPY.Adjusted_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
4076 SPY.Adjusted_Log Log of
4077 SPY.Adjusted_mva200 200 Day MA
4078 SPY.Adjusted_mva050 50 Day MA
4086 MDY.Open_mva200 200 Day MA
4087 MDY.Open_mva050 50 Day MA
4095 MDY.High_mva200 200 Day MA
4104 MDY.Low_mva200 200 Day MA
4105 MDY.Low_mva050 50 Day MA
4113 MDY.Close_mva200 200 Day MA
4114 MDY.Close_mva050 50 Day MA
4118 MDY.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4120 MDY.Volume_SmoothDer Derivative of Smoothed
4131 MDY.Adjusted_mva200 200 Day MA
4132 MDY.Adjusted_mva050 50 Day MA
4140 EES.Open_mva200 200 Day MA
4141 EES.Open_mva050 50 Day MA
4149 EES.High_mva200 200 Day MA
4150 EES.High_mva050 50 Day MA
4154 EES.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4158 EES.Low_mva200 200 Day MA
4159 EES.Low_mva050 50 Day MA
4167 EES.Close_mva200 200 Day MA
4168 EES.Close_mva050 50 Day MA
4175 EES.Volume_Log Log of
4185 EES.Adjusted_mva200 200 Day MA
4186 EES.Adjusted_mva050 50 Day MA
4194 IJR.Open_mva200 200 Day MA
4195 IJR.Open_mva050 50 Day MA
4203 IJR.High_mva200 200 Day MA
4204 IJR.High_mva050 50 Day MA
4212 IJR.Low_mva200 200 Day MA
4213 IJR.Low_mva050 50 Day MA
4221 IJR.Close_mva200 200 Day MA
4222 IJR.Close_mva050 50 Day MA
4239 IJR.Adjusted_mva200 200 Day MA
4240 IJR.Adjusted_mva050 50 Day MA
4244 VGSTX.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4247 VGSTX.Open_Log Log of
4248 VGSTX.Open_mva200 200 Day MA
4249 VGSTX.Open_mva050 50 Day MA
4253 VGSTX.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4256 VGSTX.High_Log Log of
4257 VGSTX.High_mva200 200 Day MA
4258 VGSTX.High_mva050 50 Day MA
4262 VGSTX.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4265 VGSTX.Low_Log Log of
4266 VGSTX.Low_mva200 200 Day MA
4267 VGSTX.Low_mva050 50 Day MA
4271 VGSTX.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4274 VGSTX.Close_Log Log of
4275 VGSTX.Close_mva200 200 Day MA
4276 VGSTX.Close_mva050 50 Day MA
4277 VGSTX.Volume_YoY Year over Year
4278 VGSTX.Volume_YoY4 4 Year over 4 Year
4279 VGSTX.Volume_YoY5 5 Year over 5 Year
4280 VGSTX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4281 VGSTX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
4282 VGSTX.Volume_SmoothDer Derivative of Smoothed
4283 VGSTX.Volume_Log Log of
4284 VGSTX.Volume_mva200 200 Day MA
4285 VGSTX.Volume_mva050 50 Day MA
4289 VGSTX.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4292 VGSTX.Adjusted_Log Log of
4293 VGSTX.Adjusted_mva200 200 Day MA
4294 VGSTX.Adjusted_mva050 50 Day MA
4298 VFINX.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4299 VFINX.Open_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
4301 VFINX.Open_Log Log of
4302 VFINX.Open_mva200 200 Day MA
4303 VFINX.Open_mva050 50 Day MA
4307 VFINX.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4308 VFINX.High_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
4310 VFINX.High_Log Log of
4311 VFINX.High_mva200 200 Day MA
4312 VFINX.High_mva050 50 Day MA
4316 VFINX.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4317 VFINX.Low_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
4319 VFINX.Low_Log Log of
4320 VFINX.Low_mva200 200 Day MA
4321 VFINX.Low_mva050 50 Day MA
4325 VFINX.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4326 VFINX.Close_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
4328 VFINX.Close_Log Log of
4329 VFINX.Close_mva200 200 Day MA
4330 VFINX.Close_mva050 50 Day MA
4331 VFINX.Volume_YoY Year over Year
4332 VFINX.Volume_YoY4 4 Year over 4 Year
4333 VFINX.Volume_YoY5 5 Year over 5 Year
4334 VFINX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4335 VFINX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
4336 VFINX.Volume_SmoothDer Derivative of Smoothed
4337 VFINX.Volume_Log Log of
4338 VFINX.Volume_mva200 200 Day MA
4339 VFINX.Volume_mva050 50 Day MA
4343 VFINX.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4344 VFINX.Adjusted_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
4346 VFINX.Adjusted_Log Log of
4347 VFINX.Adjusted_mva200 200 Day MA
4348 VFINX.Adjusted_mva050 50 Day MA
4352 VOE.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4356 VOE.Open_mva200 200 Day MA
4357 VOE.Open_mva050 50 Day MA
4361 VOE.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4365 VOE.High_mva200 200 Day MA
4366 VOE.High_mva050 50 Day MA
4370 VOE.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4374 VOE.Low_mva200 200 Day MA
4375 VOE.Low_mva050 50 Day MA
4379 VOE.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4383 VOE.Close_mva200 200 Day MA
4384 VOE.Close_mva050 50 Day MA
4390 VOE.Volume_SmoothDer Derivative of Smoothed
4397 VOE.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4401 VOE.Adjusted_mva200 200 Day MA
4402 VOE.Adjusted_mva050 50 Day MA
4410 VOT.Open_mva200 200 Day MA
4419 VOT.High_mva200 200 Day MA
4428 VOT.Low_mva200 200 Day MA
4437 VOT.Close_mva200 200 Day MA
4455 VOT.Adjusted_mva200 200 Day MA
4493 TMFGX.Volume_YoY Year over Year
4494 TMFGX.Volume_YoY4 4 Year over 4 Year
4495 TMFGX.Volume_YoY5 5 Year over 5 Year
4496 TMFGX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4497 TMFGX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
4498 TMFGX.Volume_SmoothDer Derivative of Smoothed
4499 TMFGX.Volume_Log Log of
4500 TMFGX.Volume_mva200 200 Day MA
4501 TMFGX.Volume_mva050 50 Day MA
4518 IWM.Open_mva200 200 Day MA
4519 IWM.Open_mva050 50 Day MA
4527 IWM.High_mva200 200 Day MA
4536 IWM.Low_mva200 200 Day MA
4537 IWM.Low_mva050 50 Day MA
4545 IWM.Close_mva200 200 Day MA
4546 IWM.Close_mva050 50 Day MA
4552 IWM.Volume_SmoothDer Derivative of Smoothed
4563 IWM.Adjusted_mva200 200 Day MA
4564 IWM.Adjusted_mva050 50 Day MA
4572 ONEQ.Open_mva200 200 Day MA
4581 ONEQ.High_mva200 200 Day MA
4590 ONEQ.Low_mva200 200 Day MA
4599 ONEQ.Close_mva200 200 Day MA
4617 ONEQ.Adjusted_mva200 200 Day MA
4622 HAINX.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4626 HAINX.Open_mva200 200 Day MA
4627 HAINX.Open_mva050 50 Day MA
4631 HAINX.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4635 HAINX.High_mva200 200 Day MA
4636 HAINX.High_mva050 50 Day MA
4640 HAINX.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4644 HAINX.Low_mva200 200 Day MA
4645 HAINX.Low_mva050 50 Day MA
4649 HAINX.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4653 HAINX.Close_mva200 200 Day MA
4654 HAINX.Close_mva050 50 Day MA
4655 HAINX.Volume_YoY Year over Year
4656 HAINX.Volume_YoY4 4 Year over 4 Year
4657 HAINX.Volume_YoY5 5 Year over 5 Year
4658 HAINX.Volume_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4659 HAINX.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
4660 HAINX.Volume_SmoothDer Derivative of Smoothed
4661 HAINX.Volume_Log Log of
4662 HAINX.Volume_mva200 200 Day MA
4663 HAINX.Volume_mva050 50 Day MA
4667 HAINX.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4671 HAINX.Adjusted_mva200 200 Day MA
4672 HAINX.Adjusted_mva050 50 Day MA
4680 VEU.Open_mva200 200 Day MA
4681 VEU.Open_mva050 50 Day MA
4689 VEU.High_mva200 200 Day MA
4690 VEU.High_mva050 50 Day MA
4698 VEU.Low_mva200 200 Day MA
4699 VEU.Low_mva050 50 Day MA
4704 VEU.Close_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
4707 VEU.Close_mva200 200 Day MA
4708 VEU.Close_mva050 50 Day MA
4714 VEU.Volume_SmoothDer Derivative of Smoothed
4722 VEU.Adjusted_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
4725 VEU.Adjusted_mva200 200 Day MA
4726 VEU.Adjusted_mva050 50 Day MA
4732 BIL.Open_SmoothDer Derivative of Smoothed
4741 BIL.High_SmoothDer Derivative of Smoothed
4750 BIL.Low_SmoothDer Derivative of Smoothed
4759 BIL.Close_SmoothDer Derivative of Smoothed
4768 BIL.Volume_SmoothDer Derivative of Smoothed
4777 BIL.Adjusted_SmoothDer Derivative of Smoothed
4788 IVOO.Open_mva200 200 Day MA
4789 IVOO.Open_mva050 50 Day MA
4797 IVOO.High_mva200 200 Day MA
4806 IVOO.Low_mva200 200 Day MA
4807 IVOO.Low_mva050 50 Day MA
4815 IVOO.Close_mva200 200 Day MA
4816 IVOO.Close_mva050 50 Day MA
4823 IVOO.Volume_Log Log of
4833 IVOO.Adjusted_mva200 200 Day MA
4834 IVOO.Adjusted_mva050 50 Day MA
4838 VO.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4842 VO.Open_mva200 200 Day MA
4843 VO.Open_mva050 50 Day MA
4850 VO.High_Log Log of
4851 VO.High_mva200 200 Day MA
4852 VO.High_mva050 50 Day MA
4856 VO.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4857 VO.Low_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
4859 VO.Low_Log Log of
4860 VO.Low_mva200 200 Day MA
4861 VO.Low_mva050 50 Day MA
4865 VO.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4866 VO.Close_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
4868 VO.Close_Log Log of
4869 VO.Close_mva200 200 Day MA
4870 VO.Close_mva050 50 Day MA
4876 VO.Volume_SmoothDer Derivative of Smoothed
4877 VO.Volume_Log Log of
4883 VO.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4884 VO.Adjusted_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
4886 VO.Adjusted_Log Log of
4887 VO.Adjusted_mva200 200 Day MA
4888 VO.Adjusted_mva050 50 Day MA
4892 CZA.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4896 CZA.Open_mva200 200 Day MA
4897 CZA.Open_mva050 50 Day MA
4901 CZA.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4905 CZA.High_mva200 200 Day MA
4906 CZA.High_mva050 50 Day MA
4910 CZA.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4914 CZA.Low_mva200 200 Day MA
4915 CZA.Low_mva050 50 Day MA
4919 CZA.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4920 CZA.Close_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
4923 CZA.Close_mva200 200 Day MA
4924 CZA.Close_mva050 50 Day MA
4931 CZA.Volume_Log Log of
4937 CZA.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4938 CZA.Adjusted_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
4941 CZA.Adjusted_mva200 200 Day MA
4942 CZA.Adjusted_mva050 50 Day MA
4946 VYM.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4950 VYM.Open_mva200 200 Day MA
4951 VYM.Open_mva050 50 Day MA
4955 VYM.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4959 VYM.High_mva200 200 Day MA
4960 VYM.High_mva050 50 Day MA
4964 VYM.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4968 VYM.Low_mva200 200 Day MA
4969 VYM.Low_mva050 50 Day MA
4973 VYM.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4977 VYM.Close_mva200 200 Day MA
4978 VYM.Close_mva050 50 Day MA
4991 VYM.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
4995 VYM.Adjusted_mva200 200 Day MA
4996 VYM.Adjusted_mva050 50 Day MA
5000 ACWI.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5004 ACWI.Open_mva200 200 Day MA
5005 ACWI.Open_mva050 50 Day MA
5009 ACWI.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5013 ACWI.High_mva200 200 Day MA
5014 ACWI.High_mva050 50 Day MA
5018 ACWI.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5022 ACWI.Low_mva200 200 Day MA
5023 ACWI.Low_mva050 50 Day MA
5027 ACWI.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5031 ACWI.Close_mva200 200 Day MA
5032 ACWI.Close_mva050 50 Day MA
5045 ACWI.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5046 ACWI.Adjusted_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
5048 ACWI.Adjusted_Log Log of
5049 ACWI.Adjusted_mva200 200 Day MA
5050 ACWI.Adjusted_mva050 50 Day MA
5058 SLY.Open_mva200 200 Day MA
5059 SLY.Open_mva050 50 Day MA
5067 SLY.High_mva200 200 Day MA
5068 SLY.High_mva050 50 Day MA
5076 SLY.Low_mva200 200 Day MA
5077 SLY.Low_mva050 50 Day MA
5085 SLY.Close_mva200 200 Day MA
5086 SLY.Close_mva050 50 Day MA
5093 SLY.Volume_Log Log of
5103 SLY.Adjusted_mva200 200 Day MA
5104 SLY.Adjusted_mva050 50 Day MA
5108 QQQ.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5112 QQQ.Open_mva200 200 Day MA
5117 QQQ.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5121 QQQ.High_mva200 200 Day MA
5126 QQQ.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5130 QQQ.Low_mva200 200 Day MA
5135 QQQ.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5136 QQQ.Close_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
5139 QQQ.Close_mva200 200 Day MA
5153 QQQ.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5154 QQQ.Adjusted_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
5157 QQQ.Adjusted_mva200 200 Day MA
5162 HYMB.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5163 HYMB.Open_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
5165 HYMB.Open_Log Log of
5166 HYMB.Open_mva200 200 Day MA
5167 HYMB.Open_mva050 50 Day MA
5171 HYMB.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5174 HYMB.High_Log Log of
5175 HYMB.High_mva200 200 Day MA
5176 HYMB.High_mva050 50 Day MA
5180 HYMB.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5181 HYMB.Low_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
5183 HYMB.Low_Log Log of
5184 HYMB.Low_mva200 200 Day MA
5185 HYMB.Low_mva050 50 Day MA
5189 HYMB.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5192 HYMB.Close_Log Log of
5193 HYMB.Close_mva200 200 Day MA
5194 HYMB.Close_mva050 50 Day MA
5200 HYMB.Volume_SmoothDer Derivative of Smoothed
5201 HYMB.Volume_Log Log of
5207 HYMB.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5210 HYMB.Adjusted_Log Log of
5211 HYMB.Adjusted_mva200 200 Day MA
5212 HYMB.Adjusted_mva050 50 Day MA
5216 GOLD.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5218 GOLD.Open_SmoothDer Derivative of Smoothed
5219 GOLD.Open_Log Log of
5225 GOLD.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5227 GOLD.High_SmoothDer Derivative of Smoothed
5234 GOLD.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5236 GOLD.Low_SmoothDer Derivative of Smoothed
5243 GOLD.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5245 GOLD.Close_SmoothDer Derivative of Smoothed
5255 GOLD.Volume_Log Log of
5261 GOLD.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5263 GOLD.Adjusted_SmoothDer Derivative of Smoothed
5273 BKR.Open_Log Log of
5274 BKR.Open_mva200 200 Day MA
5275 BKR.Open_mva050 50 Day MA
5283 BKR.High_mva200 200 Day MA
5284 BKR.High_mva050 50 Day MA
5292 BKR.Low_mva200 200 Day MA
5293 BKR.Low_mva050 50 Day MA
5298 BKR.Close_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
5301 BKR.Close_mva200 200 Day MA
5302 BKR.Close_mva050 50 Day MA
5309 BKR.Volume_Log Log of
5316 BKR.Adjusted_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
5319 BKR.Adjusted_mva200 200 Day MA
5320 BKR.Adjusted_mva050 50 Day MA
5324 SLB.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5328 SLB.Open_mva200 200 Day MA
5329 SLB.Open_mva050 50 Day MA
5333 SLB.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5337 SLB.High_mva200 200 Day MA
5338 SLB.High_mva050 50 Day MA
5342 SLB.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5346 SLB.Low_mva200 200 Day MA
5347 SLB.Low_mva050 50 Day MA
5351 SLB.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5355 SLB.Close_mva200 200 Day MA
5356 SLB.Close_mva050 50 Day MA
5362 SLB.Volume_SmoothDer Derivative of Smoothed
5369 SLB.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5373 SLB.Adjusted_mva200 200 Day MA
5374 SLB.Adjusted_mva050 50 Day MA
5381 HAL.Open_Log Log of
5382 HAL.Open_mva200 200 Day MA
5383 HAL.Open_mva050 50 Day MA
5391 HAL.High_mva200 200 Day MA
5392 HAL.High_mva050 50 Day MA
5400 HAL.Low_mva200 200 Day MA
5401 HAL.Low_mva050 50 Day MA
5409 HAL.Close_mva200 200 Day MA
5410 HAL.Close_mva050 50 Day MA
5416 HAL.Volume_SmoothDer Derivative of Smoothed
5417 HAL.Volume_Log Log of
5427 HAL.Adjusted_mva200 200 Day MA
5428 HAL.Adjusted_mva050 50 Day MA
5432 IP.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5435 IP.Open_Log Log of
5436 IP.Open_mva200 200 Day MA
5437 IP.Open_mva050 50 Day MA
5441 IP.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5445 IP.High_mva200 200 Day MA
5446 IP.High_mva050 50 Day MA
5450 IP.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5454 IP.Low_mva200 200 Day MA
5455 IP.Low_mva050 50 Day MA
5459 IP.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5463 IP.Close_mva200 200 Day MA
5464 IP.Close_mva050 50 Day MA
5477 IP.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5481 IP.Adjusted_mva200 200 Day MA
5482 IP.Adjusted_mva050 50 Day MA
5490 PKG.Open_mva200 200 Day MA
5491 PKG.Open_mva050 50 Day MA
5499 PKG.High_mva200 200 Day MA
5500 PKG.High_mva050 50 Day MA
5508 PKG.Low_mva200 200 Day MA
5509 PKG.Low_mva050 50 Day MA
5517 PKG.Close_mva200 200 Day MA
5518 PKG.Close_mva050 50 Day MA
5523 PKG.Volume_Smooth.short Savitsky-Golay Smoothed (p=3, n=15)
5524 PKG.Volume_SmoothDer Derivative of Smoothed
5535 PKG.Adjusted_mva200 200 Day MA
5536 PKG.Adjusted_mva050 50 Day MA
5540 UPS.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5544 UPS.Open_mva200 200 Day MA
5545 UPS.Open_mva050 50 Day MA
5549 UPS.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5553 UPS.High_mva200 200 Day MA
5554 UPS.High_mva050 50 Day MA
5558 UPS.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5562 UPS.Low_mva200 200 Day MA
5563 UPS.Low_mva050 50 Day MA
5567 UPS.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5571 UPS.Close_mva200 200 Day MA
5572 UPS.Close_mva050 50 Day MA
5585 UPS.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5587 UPS.Adjusted_SmoothDer Derivative of Smoothed
5589 UPS.Adjusted_mva200 200 Day MA
5590 UPS.Adjusted_mva050 50 Day MA
5594 FDX.Open_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5598 FDX.Open_mva200 200 Day MA
5599 FDX.Open_mva050 50 Day MA
5603 FDX.High_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5607 FDX.High_mva200 200 Day MA
5608 FDX.High_mva050 50 Day MA
5612 FDX.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5616 FDX.Low_mva200 200 Day MA
5617 FDX.Low_mva050 50 Day MA
5621 FDX.Close_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5625 FDX.Close_mva200 200 Day MA
5626 FDX.Close_mva050 50 Day MA
5639 FDX.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5643 FDX.Adjusted_mva200 200 Day MA
5644 FDX.Adjusted_mva050 50 Day MA
5651 T.Open_Log Log of
5661 T.High_mva200 200 Day MA
5670 T.Low_mva200 200 Day MA
5679 T.Close_mva200 200 Day MA
5688 T.Volume_mva200 200 Day MA
5693 T.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5697 T.Adjusted_mva200 200 Day MA
5720 VZ.Low_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5747 VZ.Adjusted_Smooth Savitsky-Golay Smoothed (p=3, n=365)
5760 ISMMANPMI_mva200 Institute of Supply Managment PMI Composite Index 200 Day MA
5765 MULTPLSP500PERATIOMONTH_Smooth Savitsky-Golay Smoothed (p=3, n=365) S&P 500 TTM P/E
5768 MULTPLSP500PERATIOMONTH_Log Log of S&P 500 TTM P/E
5769 MULTPLSP500PERATIOMONTH_mva200 S&P 500 TTM P/E 200 Day MA
5770 MULTPLSP500PERATIOMONTH_mva050 S&P 500 TTM P/E 50 Day MA
5771 MULTPLSP500SALESQUARTER_YoY S&P 500 TTM Sales (Not Inflation Adjusted) Year over Year
5785 MULTPLSP500DIVYIELDMONTH_SmoothDer Derivative of Smoothed S&P 500 Dividend Yield by Month
5794 MULTPLSP500DIVMONTH_SmoothDer Derivative of Smoothed S&P 500 Dividend by Month (Inflation Adjusted)
5801 CHRISCMEHG1_Smooth Savitsky-Golay Smoothed (p=3, n=365) Copper Futures, Continuous Contract #1 (HG1) (Front Month)
5805 CHRISCMEHG1_mva200 Copper Futures, Continuous Contract #1 (HG1) (Front Month) 200 Day MA
5806 CHRISCMEHG1_mva050 Copper Futures, Continuous Contract #1 (HG1) (Front Month) 50 Day MA
5807 WWDIWLDISAIRGOODMTK1_YoY Air transport, freight Year over Year
5813 WWDIWLDISAIRGOODMTK1_Log Log of Air transport, freight
5814 WWDIWLDISAIRGOODMTK1_mva200 Air transport, freight 200 Day MA
5815 WWDIWLDISAIRGOODMTK1_mva050 Air transport, freight 50 Day MA
5819 PETA103600001M_Smooth Savitsky-Golay Smoothed (p=3, n=365) U.S. Total Gasoline Retail Sales by Refiners, Monthly
5822 PETA103600001M_Log Log of U.S. Total Gasoline Retail Sales by Refiners, Monthly
5824 PETA103600001M_mva050 U.S. Total Gasoline Retail Sales by Refiners, Monthly 50 Day MA
5828 PETA123600001M_Smooth Savitsky-Golay Smoothed (p=3, n=365) U.S. Regular Gasoline Retail Sales by Refiners, Monthly
5831 PETA123600001M_Log Log of U.S. Regular Gasoline Retail Sales by Refiners, Monthly
5833 PETA123600001M_mva050 U.S. Regular Gasoline Retail Sales by Refiners, Monthly 50 Day MA
5834 PETA143B00001M_YoY U.S. Midgrade Gasoline Retail Sales by Refiners, Monthly Year over Year
5835 PETA143B00001M_YoY4 U.S. Midgrade Gasoline Retail Sales by Refiners, Monthly 4 Year over 4 Year
5836 PETA143B00001M_YoY5 U.S. Midgrade Gasoline Retail Sales by Refiners, Monthly 5 Year over 5 Year
5840 PETA143B00001M_Log Log of U.S. Midgrade Gasoline Retail Sales by Refiners, Monthly
5841 PETA143B00001M_mva200 U.S. Midgrade Gasoline Retail Sales by Refiners, Monthly 200 Day MA
5842 PETA143B00001M_mva050 U.S. Midgrade Gasoline Retail Sales by Refiners, Monthly 50 Day MA
5852 TOTALOGNRPUSM_YoY Crude Oil and Natural Gas Rotary Rigs in Operation, Total, Monthly Year over Year
5858 TOTALOGNRPUSM_Log Log of Crude Oil and Natural Gas Rotary Rigs in Operation, Total, Monthly
5859 TOTALOGNRPUSM_mva200 Crude Oil and Natural Gas Rotary Rigs in Operation, Total, Monthly 200 Day MA
5860 TOTALOGNRPUSM_mva050 Crude Oil and Natural Gas Rotary Rigs in Operation, Total, Monthly 50 Day MA
5861 TOTALPANRPUSM_YoY Crude Oil Rotary Rigs in Operation, Monthly Year over Year
5867 TOTALPANRPUSM_Log Log of Crude Oil Rotary Rigs in Operation, Monthly
5868 TOTALPANRPUSM_mva200 Crude Oil Rotary Rigs in Operation, Monthly 200 Day MA
5869 TOTALPANRPUSM_mva050 Crude Oil Rotary Rigs in Operation, Monthly 50 Day MA
5870 TOTALNGNRPUSM_YoY Natural Gas Rotary Rigs in Operation, Monthly Year over Year
5876 TOTALNGNRPUSM_Log Log of Natural Gas Rotary Rigs in Operation, Monthly
5877 TOTALNGNRPUSM_mva200 Natural Gas Rotary Rigs in Operation, Monthly 200 Day MA
5878 TOTALNGNRPUSM_mva050 Natural Gas Rotary Rigs in Operation, Monthly 50 Day MA
5879 BKRTotal_YoY Total Rig Count Year over Year
5885 BKRTotal_Log Log of Total Rig Count
5887 BKRTotal_mva050 Total Rig Count 50 Day MA
5894 BKRGas_Log Log of Gas Rig Count
5896 BKRGas_mva050 Gas Rig Count 50 Day MA
5897 BKROil_YoY Oil Rig Count Year over Year
5903 BKROil_Log Log of Oil Rig Count
5905 BKROil_mva050 Oil Rig Count 50 Day MA
5906 FARMINCOME_YoY Net Farm Income Year over Year
5912 FARMINCOME_Log Log of Net Farm Income
5913 FARMINCOME_mva200 Net Farm Income 200 Day MA
5914 FARMINCOME_mva050 Net Farm Income 50 Day MA
5918 OPEARNINGSPERSHARE_Smooth Savitsky-Golay Smoothed (p=3, n=365) Operating Earnings per Share
5921 OPEARNINGSPERSHARE_Log Log of Operating Earnings per Share
5922 OPEARNINGSPERSHARE_mva200 Operating Earnings per Share 200 Day MA
5923 OPEARNINGSPERSHARE_mva050 Operating Earnings per Share 50 Day MA
5927 AREARNINGSPERSHARE_Smooth Savitsky-Golay Smoothed (p=3, n=365) As-Reported Earnings per Share
5930 AREARNINGSPERSHARE_Log Log of As-Reported Earnings per Share
5933 CASHDIVIDENDSPERSHR_YoY Cash Dividends per Share Year over Year
5939 CASHDIVIDENDSPERSHR_Log Log of Cash Dividends per Share
5940 CASHDIVIDENDSPERSHR_mva200 Cash Dividends per Share 200 Day MA
5941 CASHDIVIDENDSPERSHR_mva050 Cash Dividends per Share 50 Day MA
5942 SALESPERSHR_YoY Sales per Share Year over Year
5948 SALESPERSHR_Log Log of Sales per Share
5949 SALESPERSHR_mva200 Sales per Share 200 Day MA
5950 SALESPERSHR_mva050 Sales per Share 50 Day MA
5957 BOOKVALPERSHR_Log Log of Book value per Share
5958 BOOKVALPERSHR_mva200 Book value per Share 200 Day MA
5959 BOOKVALPERSHR_mva050 Book value per Share 50 Day MA
5960 CAPEXPERSHR_YoY Cap ex per Share Year over Year
5966 CAPEXPERSHR_Log Log of Cap ex per Share
5967 CAPEXPERSHR_mva200 Cap ex per Share 200 Day MA
5968 CAPEXPERSHR_mva050 Cap ex per Share 50 Day MA
5975 PRICE_Log Log of Price
5976 PRICE_mva200 Price 200 Day MA
5977 PRICE_mva050 Price 50 Day MA
5978 OPEARNINGSTTM_YoY TTM Operating Earnings Year over Year
5980 OPEARNINGSTTM_YoY5 TTM Operating Earnings 5 Year over 5 Year
5987 AREARNINGSTTM_YoY TTM Reported Earnings Year over Year
6002 FINRAMarginDebt_Log Log of Margin Debt
6003 FINRAMarginDebt_mva200 Margin Debt 200 Day MA
6004 FINRAMarginDebt_mva050 Margin Debt 50 Day MA
6010 FINRAFreeCreditMargin_SmoothDer Derivative of Smoothed Free Credit Balances in Customers’ Securities Margin Accounts
6012 FINRAFreeCreditMargin_mva200 Free Credit Balances in Customers’ Securities Margin Accounts 200 Day MA
6014 OCCEquityVolume_YoY Equity Options Volume Year over Year
6020 OCCEquityVolume_Log Log of Equity Options Volume
6021 OCCEquityVolume_mva200 Equity Options Volume 200 Day MA
6022 OCCEquityVolume_mva050 Equity Options Volume 50 Day MA
6023 OCCNonEquityVolume_YoY Non-Equity Options Volume Year over Year
6029 OCCNonEquityVolume_Log Log of Non-Equity Options Volume
6030 OCCNonEquityVolume_mva200 Non-Equity Options Volume 200 Day MA
6031 OCCNonEquityVolume_mva050 Non-Equity Options Volume 50 Day MA
6035 RSALESAGG_Smooth Savitsky-Golay Smoothed (p=3, n=365) Real Retail and Food Services Sales (RRSFS and RSALES)
6037 RSALESAGG_SmoothDer Derivative of Smoothed Real Retail and Food Services Sales (RRSFS and RSALES)
6039 RSALESAGG_mva200 Real Retail and Food Services Sales (RRSFS and RSALES) 200 Day MA
6047 BUSLOANS.minus.BUSLOANSNSA_Log Log of Business Loans (Montlhy) SA - NSA
6056 BUSLOANS.minus.BUSLOANSNSA.by.GDP_Log Log of Business Loans (Montlhy) SA - NSA divided by GDP
6064 BUSLOANS.by.GDP_SmoothDer Derivative of Smoothed Business Loans Normalized by GDP
6075 BUSLOANS.INTEREST_mva200 Business Loans (Monthly, SA) Adjusted Interest Burdens 200 Day MA
6084 BUSLOANS.INTEREST.by.GDP_mva200 Business Loans (Monthly, SA) Adjusted Interest Burden Divided by GDP 200 Day MA
6091 BUSLOANSNSA.by.GDP_SmoothDer Derivative of Smoothed Business Loans Normalized by GDP
6100 TOTCI.by.GDP_SmoothDer Derivative of Smoothed Business Loans (Weekly, SA) Normalized by GDP
6109 TOTCINSA.by.GDP_SmoothDer Derivative of Smoothed Business Loans (Weekly, NSA) Normalized by GDP
6120 TOTCINSA.INTEREST_mva200 Business Loans (Weekly, NSA) Adjusted Interest Burdens 200 Day MA
6129 TOTCINSA.INTEREST.by.GDP_mva200 Business Loans (weekly, NSA) Adjusted Interest Burden Divided by GDP 200 Day MA
6131 W875RX1.by.GDP_YoY Real Personal Income Normalized by GDP Year over Year
6132 W875RX1.by.GDP_YoY4 Real Personal Income Normalized by GDP 4 Year over 4 Year
6134 W875RX1.by.GDP_Smooth Savitsky-Golay Smoothed (p=3, n=365) Real Personal Income Normalized by GDP
6137 W875RX1.by.GDP_Log Log of Real Personal Income Normalized by GDP
6139 W875RX1.by.GDP_mva050 Real Personal Income Normalized by GDP 50 Day MA
6145 A065RC1A027NBEA.by.GDP_SmoothDer Derivative of Smoothed Personal Income (NSA) Normalized by GDP
6154 PI.by.GDP_SmoothDer Derivative of Smoothed Personal Income (SA) Normalized by GDP
6156 PI.by.GDP_mva200 Personal Income (SA) Normalized by GDP 200 Day MA
6163 A053RC1Q027SBEA.by.GDP_SmoothDer Derivative of Smoothed National income: Corporate profits before tax (without IVA and CCAdj) Normalized by GDP
6164 A053RC1Q027SBEA.by.GDP_Log Log of National income: Corporate profits before tax (without IVA and CCAdj) Normalized by GDP
6165 A053RC1Q027SBEA.by.GDP_mva200 National income: Corporate profits before tax (without IVA and CCAdj) Normalized by GDP 200 Day MA
6166 A053RC1Q027SBEA.by.GDP_mva050 National income: Corporate profits before tax (without IVA and CCAdj) Normalized by GDP 50 Day MA
6172 CPROFIT.by.GDP_SmoothDer Derivative of Smoothed National income: Corporate profits before tax (with IVA and CCAdj) Normalized by GDP
6176 CONSUMERNSA.by.GDP_YoY Consumer Loans Not Seasonally Adjusted divided by GDP Year over Year
6179 CONSUMERNSA.by.GDP_Smooth Savitsky-Golay Smoothed (p=3, n=365) Consumer Loans Not Seasonally Adjusted divided by GDP
6181 CONSUMERNSA.by.GDP_SmoothDer Derivative of Smoothed Consumer Loans Not Seasonally Adjusted divided by GDP
6190 RREACBM027NBOG.by.GDP_SmoothDer Derivative of Smoothed Residental Real Estate Loans (Monthly, NSA) divided by GDP
6199 RREACBM027SBOG.by.GDP_SmoothDer Derivative of Smoothed Residental Real Estate Loans (Monthly, SA) divided by GDP
6208 RREACBW027SBOG.by.GDP_SmoothDer Derivative of Smoothed Residental Real Estate Loans (Weekly, SA) divided by GDP
6217 RREACBW027NBOG.by.GDP_SmoothDer Derivative of Smoothed Residental Real Estate Loans (Weekly, NSA) divided by GDP
6223 UMDMNO.by.GDP_YoY5 Durable Goods (Monthly, NSA) divided by GDP 5 Year over 5 Year
6228 UMDMNO.by.GDP_mva200 Durable Goods (Monthly, NSA) divided by GDP 200 Day MA
6237 DGORDER.by.GDP_mva200 Durable Goods (Monthly, NSA) divided by GDP 200 Day MA
6240 ASHMA.by.GDP_YoY4 Home Mortgages (Quarterly, NSA) divided by GDP 4 Year over 4 Year
6241 ASHMA.by.GDP_YoY5 Home Mortgages (Quarterly, NSA) divided by GDP 5 Year over 5 Year
6244 ASHMA.by.GDP_SmoothDer Derivative of Smoothed Home Mortgages (Quarterly, NSA) divided by GDP
6251 ASHMA.INTEREST_Smooth Savitsky-Golay Smoothed (p=3, n=365) Home Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens
6253 ASHMA.INTEREST_SmoothDer Derivative of Smoothed Home Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens
6255 ASHMA.INTEREST_mva200 Home Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens 200 Day MA
6260 ASHMA.INTEREST.by.GDP_Smooth Savitsky-Golay Smoothed (p=3, n=365)
6262 ASHMA.INTEREST.by.GDP_SmoothDer Derivative of Smoothed
6266 CONSUMERNSA.INTEREST_YoY Consumer Loans (Not Seasonally Adjusted) Interest Burdens Year over Year
6275 CONSUMERNSA.INTEREST.by.GDP_YoY Consumer Loans (Not Seasonally Adjusted) Interest Burden Divided by GDP Year over Year
6289 TOTLNNSA_SmoothDer Derivative of Smoothed Total Loans Not Seasonally Adjusted (BUSLOANS+REALLNSA+CONSUMERNSA)
6298 TOTLNNSA.by.GDP_SmoothDer Derivative of Smoothed Total Loans Not Seasonally Adjusted divided by GDP
6309 TOTLNNSA.INTEREST_mva200 Total Loans Not Seasonally Adjusted Interest Burdens 200 Day MA
6318 TOTLNNSA.INTEREST.by.GDP_mva200 Total Loans Not Seasonally Adjusted Interest Burden Divided by GDP 200 Day MA
6323 WRESBAL.by.GDP_Smooth Savitsky-Golay Smoothed (p=3, n=365) Reserve Balances with Federal Reserve Banks Divided by GDP
6325 WRESBAL.by.GDP_SmoothDer Derivative of Smoothed Reserve Balances with Federal Reserve Banks Divided by GDP
6327 WRESBAL.by.GDP_mva200 Reserve Balances with Federal Reserve Banks Divided by GDP 200 Day MA
6334 EXCSRESNW.by.GDP_SmoothDer Derivative of Smoothed Excess Reserves of Depository Institutions Divided by GDP
6338 WLRRAL.by.GDP_YoY Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Divided by GDP Year over Year
6340 WLRRAL.by.GDP_YoY5 Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Divided by GDP 5 Year over 5 Year
6341 WLRRAL.by.GDP_Smooth Savitsky-Golay Smoothed (p=3, n=365) Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Divided by GDP
6343 WLRRAL.by.GDP_SmoothDer Derivative of Smoothed Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Divided by GDP
6344 WLRRAL.by.GDP_Log Log of Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Divided by GDP
6345 WLRRAL.by.GDP_mva200 Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Divided by GDP 200 Day MA
6346 WLRRAL.by.GDP_mva050 Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Divided by GDP 50 Day MA
6350 SOFR99.minus.SOFR1_Smooth Savitsky-Golay Smoothed (p=3, n=365) Secured Overnight Financing Rate: 99th Percentile - 1st Percentile
6352 SOFR99.minus.SOFR1_SmoothDer Derivative of Smoothed Secured Overnight Financing Rate: 99th Percentile - 1st Percentile
6354 SOFR99.minus.SOFR1_mva200 Secured Overnight Financing Rate: 99th Percentile - 1st Percentile 200 Day MA
6362 EXPCH.minus.IMPCH_Log Log of U.S. Exports to China (FAS Basis) - U.S. Imports to China (Customs Basis)
6363 EXPCH.minus.IMPCH_mva200 U.S. Exports to China (FAS Basis) - U.S. Imports to China (Customs Basis) 200 Day MA
6371 EXPMX.minus.IMPMX_Log Log of
6372 EXPMX.minus.IMPMX_mva200 200 Day MA
6375 SRPSABSNNCB.by.GDP_YoY4 Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) Divided by GDP 4 Year over 4 Year
6379 SRPSABSNNCB.by.GDP_SmoothDer Derivative of Smoothed Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) Divided by GDP
6380 SRPSABSNNCB.by.GDP_Log Log of Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) Divided by GDP
6388 ASTLL.by.GDP_SmoothDer Derivative of Smoothed All sectors; total loans; liability, Level (NSA) Divided by GDP
6397 ASFMA.by.GDP_SmoothDer Derivative of Smoothed All sectors; farm mortgages; asset, Level (NSA) Divided by GDP
6406 ASFMA.by.ASTLL_SmoothDer Derivative of Smoothed All sectors; total loans Divided by farm mortgages
6413 ASFMA.INTEREST_Smooth Savitsky-Golay Smoothed (p=3, n=365) Farm Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens
6415 ASFMA.INTEREST_SmoothDer Derivative of Smoothed Farm Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens
6417 ASFMA.INTEREST_mva200 Farm Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens 200 Day MA
6422 ASFMA.INTEREST.by.GDP_Smooth Savitsky-Golay Smoothed (p=3, n=365) Farm Mortgages (Quarterly, NSA) Interest Burden Divided by GDP
6424 ASFMA.INTEREST.by.GDP_SmoothDer Derivative of Smoothed Farm Mortgages (Quarterly, NSA) Interest Burden Divided by GDP
6433 FARMINCOME.by.GDP_SmoothDer Derivative of Smoothed Farm Income (Annual, NSA) Divided by GDP
6439 BOGMBASE.by.GDP_YoY5 BOGMBASE Divided by GDP 5 Year over 5 Year
6440 BOGMBASE.by.GDP_Smooth Savitsky-Golay Smoothed (p=3, n=365) BOGMBASE Divided by GDP
6442 BOGMBASE.by.GDP_SmoothDer Derivative of Smoothed BOGMBASE Divided by GDP
6443 BOGMBASE.by.GDP_Log Log of BOGMBASE Divided by GDP
6444 BOGMBASE.by.GDP_mva200 BOGMBASE Divided by GDP 200 Day MA
6445 BOGMBASE.by.GDP_mva050 BOGMBASE Divided by GDP 50 Day MA
6449 WALCL.by.GDP_Smooth Savitsky-Golay Smoothed (p=3, n=365) All Federal Reserve Banks: Total Assets Divided by GDP
6451 WALCL.by.GDP_SmoothDer Derivative of Smoothed All Federal Reserve Banks: Total Assets Divided by GDP
6452 WALCL.by.GDP_Log Log of All Federal Reserve Banks: Total Assets Divided by GDP
6453 WALCL.by.GDP_mva200 All Federal Reserve Banks: Total Assets Divided by GDP 200 Day MA
6454 WALCL.by.GDP_mva050 All Federal Reserve Banks: Total Assets Divided by GDP 50 Day MA
6460 ECBASSETS.by.EUNNGDP_SmoothDer Derivative of Smoothed Central Bank Assets for Euro Area (11-19 Countries) Divided by GDP
6469 DGS30TO10_SmoothDer Derivative of Smoothed Yield Curve, 30 and 10 Year Treasury (DGS30-DGS10)
6470 DGS30TO10_Log Log of Yield Curve, 30 and 10 Year Treasury (DGS30-DGS10)
6478 DGS10TO1_SmoothDer Derivative of Smoothed Yield Curve, 10 and 1 Year Treasury (DGS10-DGS1)
6479 DGS10TO1_Log Log of Yield Curve, 10 and 1 Year Treasury (DGS10-DGS1)
6480 DGS10TO1_mva200 Yield Curve, 10 and 1 Year Treasury (DGS10-DGS1) 200 Day MA
6487 DGS10TO2_SmoothDer Derivative of Smoothed Yield Curve, 10 and 2 Year Treasury (DGS10-DGS2)
6488 DGS10TO2_Log Log of Yield Curve, 10 and 2 Year Treasury (DGS10-DGS2)
6489 DGS10TO2_mva200 Yield Curve, 10 and 2 Year Treasury (DGS10-DGS2) 200 Day MA
6497 DGS10TOTB3MS_Log Log of Yield Curve, 10 and 3 Month Treasury (DGS10-TB3MS)
6498 DGS10TOTB3MS_mva200 Yield Curve, 10 and 3 Month Treasury (DGS10-TB3MS) 200 Day MA
6505 DGS10TODTB3_SmoothDer Derivative of Smoothed Yield Curve, 10 and 3 Month Treasury (DGS10-DTB3)
6506 DGS10TODTB3_Log Log of Yield Curve, 10 and 3 Month Treasury (DGS10-DTB3)
6507 DGS10TODTB3_mva200 Yield Curve, 10 and 3 Month Treasury (DGS10-DTB3) 200 Day MA
6514 DGS10ByAAA_SmoothDer Derivative of Smoothed AAA ratio to 10 year treasury (AAA/DGS10)
6523 LNU03000000BYPOPTHM_SmoothDer Derivative of Smoothed Unemployment level (NSA) / Population
6532 UNEMPLOYBYPOPTHM_SmoothDer Derivative of Smoothed Unemployment level, seasonally adjusted / Population
6539 NPPTTLBYPOPTHM_Smooth Savitsky-Golay Smoothed (p=3, n=365) ADP Private Employment / Population
6542 NPPTTLBYPOPTHM_Log Log of ADP Private Employment / Population
6543 NPPTTLBYPOPTHM_mva200 ADP Private Employment / Population 200 Day MA
6544 NPPTTLBYPOPTHM_mva050 ADP Private Employment / Population 50 Day MA
6550 U6toU3_SmoothDer Derivative of Smoothed U6RATE minums UNRATE
6557 CHRISCMEHG1.by.PPIACO_Smooth Savitsky-Golay Smoothed (p=3, n=365) Copper, $/lb, Normalized by commodities producer price index
6561 CHRISCMEHG1.by.PPIACO_mva200 Copper, $/lb, Normalized by commodities producer price index 200 Day MA
6562 CHRISCMEHG1.by.PPIACO_mva050 Copper, $/lb, Normalized by commodities producer price index 50 Day MA
6566 CHRISCMEHG1.by.CPIAUCSL_Smooth Savitsky-Golay Smoothed (p=3, n=365) Copper, $/lb, Normalized by consumer price index
6570 CHRISCMEHG1.by.CPIAUCSL_mva200 Copper, $/lb, Normalized by consumer price index 200 Day MA
6571 CHRISCMEHG1.by.CPIAUCSL_mva050 Copper, $/lb, Normalized by consumer price index 50 Day MA
6579 DCOILBRENTEU.by.PPIACO_mva200 Crude Oil - Brent, $/bbl, Normalized by producer price index c.o. 200 Day MA
6580 DCOILBRENTEU.by.PPIACO_mva050 Crude Oil - Brent, $/bbl, Normalized by producer price index c.o. 50 Day MA
6582 DCOILWTICO.by.PPIACO_YoY4 Crude Oil - WTI, $/bbl, Normalized by producer price index c.o. 4 Year over 4 Year
6584 DCOILWTICO.by.PPIACO_Smooth Savitsky-Golay Smoothed (p=3, n=365) Crude Oil - WTI, $/bbl, Normalized by producer price index c.o.
6587 DCOILWTICO.by.PPIACO_Log Log of Crude Oil - WTI, $/bbl, Normalized by producer price index c.o.
6588 DCOILWTICO.by.PPIACO_mva200 Crude Oil - WTI, $/bbl, Normalized by producer price index c.o. 200 Day MA
6589 DCOILWTICO.by.PPIACO_mva050 Crude Oil - WTI, $/bbl, Normalized by producer price index c.o. 50 Day MA
6595 GOLDAMGBD228NLBM.by.PPIACO_SmoothDer Derivative of Smoothed Gold, USD/Troy OUnce, Normalized by commodities producer price index
6602 GOLDAMGBD228NLBM.by.CPIAUCSL_Smooth Savitsky-Golay Smoothed (p=3, n=365) Gold, USD/Troy OUnce, Normalized by consumer price index
6604 GOLDAMGBD228NLBM.by.CPIAUCSL_SmoothDer Derivative of Smoothed Gold, USD/Troy OUnce, Normalized by consumer price index
6611 GOLDAMGBD228NLBM.by.GDP_Smooth Savitsky-Golay Smoothed (p=3, n=365) Gold, USD/Troy OUnce, Normalized by GDP
6613 GOLDAMGBD228NLBM.by.GDP_SmoothDer Derivative of Smoothed Gold, USD/Troy OUnce, Normalized by GDP
6620 GSG.Close.by.GDPDEF_Smooth Savitsky-Golay Smoothed (p=3, n=365) GSCI Commodity-Indexed Trust, Normalized by GDP def
6621 GSG.Close.by.GDPDEF_Smooth.short Savitsky-Golay Smoothed (p=3, n=15) GSCI Commodity-Indexed Trust, Normalized by GDP def
6623 GSG.Close.by.GDPDEF_Log Log of GSCI Commodity-Indexed Trust, Normalized by GDP def
6624 GSG.Close.by.GDPDEF_mva200 GSCI Commodity-Indexed Trust, Normalized by GDP def 200 Day MA
6625 GSG.Close.by.GDPDEF_mva050 GSCI Commodity-Indexed Trust, Normalized by GDP def 50 Day MA
6633 GSG.Close.by.GSPC.Close_mva200 GSCI Commodity-Indexed Trust, Normalized by S&P 500 200 Day MA
6634 GSG.Close.by.GSPC.Close_mva050 GSCI Commodity-Indexed Trust, Normalized by S&P 500 50 Day MA
6642 GDPBYPOPTHM_mva200 GDP/Population 200 Day MA
6667 GSPC.CloseBYMDY.Close_SmoothDer Derivative of Smoothed GSPC by MDY
6676 QQQ.CloseBYMDY.Close_SmoothDer Derivative of Smoothed QQQ by MDY
6686 GSPC.DailySwing_Log Log of S&P 500 (^GSPC) Daily Swing: (High - Low) / Open
6692 GSPC.Open.by.GDPDEF_Smooth Savitsky-Golay Smoothed (p=3, n=365) S&P 500 (^GSPC) Open divided by GDP deflator
6695 GSPC.Open.by.GDPDEF_Log Log of S&P 500 (^GSPC) Open divided by GDP deflator
6696 GSPC.Open.by.GDPDEF_mva200 S&P 500 (^GSPC) Open divided by GDP deflator 200 Day MA
6697 GSPC.Open.by.GDPDEF_mva050 S&P 500 (^GSPC) Open divided by GDP deflator 50 Day MA
6701 GSPC.Close.by.GDPDEF_Smooth Savitsky-Golay Smoothed (p=3, n=365) S&P 500 (^GSPC) Close divided by GDP deflator
6702 GSPC.Close.by.GDPDEF_Smooth.short Savitsky-Golay Smoothed (p=3, n=15) S&P 500 (^GSPC) Close divided by GDP deflator
6704 GSPC.Close.by.GDPDEF_Log Log of S&P 500 (^GSPC) Close divided by GDP deflator
6705 GSPC.Close.by.GDPDEF_mva200 S&P 500 (^GSPC) Close divided by GDP deflator 200 Day MA
6706 GSPC.Close.by.GDPDEF_mva050 S&P 500 (^GSPC) Close divided by GDP deflator 50 Day MA
6707 HNFSUSNSA.minus.HSN1FNSA_YoY Houses for sale - houses sold Year over Year
6710 HNFSUSNSA.minus.HSN1FNSA_Smooth Savitsky-Golay Smoothed (p=3, n=365) Houses for sale - houses sold
6713 HNFSUSNSA.minus.HSN1FNSA_Log Log of Houses for sale - houses sold
6714 HNFSUSNSA.minus.HSN1FNSA_mva200 Houses for sale - houses sold 200 Day MA
6715 HNFSUSNSA.minus.HSN1FNSA_mva050 Houses for sale - houses sold 50 Day MA
6725 MSPUS.times.HNFSUSNSA_YoY New privately owned 1-family units for sale times median price Year over Year
6728 MSPUS.times.HNFSUSNSA_Smooth Savitsky-Golay Smoothed (p=3, n=365) New privately owned 1-family units for sale times median price
6731 MSPUS.times.HNFSUSNSA_Log Log of New privately owned 1-family units for sale times median price
6732 MSPUS.times.HNFSUSNSA_mva200 New privately owned 1-family units for sale times median price 200 Day MA
6733 MSPUS.times.HNFSUSNSA_mva050 New privately owned 1-family units for sale times median price 50 Day MA
6741 GSPC.Open_mva050_mva200_sig Sell Signal S&P 500 50 SMA - 200 SMA
6742 MULTPLSP500PERATIOMONTH_Mean S&P 500 TTM P/E Average (Excludes Values Greater Than 50)

Equities

Equity indexes normalized by GDP

## Scale for 'y' is already present. Adding another scale for 'y', which will
## replace the existing scale.

The last two years compare favorably with the period around the late 1950’s. Need to dig into this one.

datay <- "GSPC.Close"
ylim <- c(2000, 4000)
my.data <- plotSimilarPeriods(df.data, dfRecession, df.symbols, datay, ylim, i.window = 60)
my.data[[1]]

Look at how the different segments of the market move

datay <- "GSPC.CloseBYMDY.Close_YoY"
ylim <- c(-50, 75)
dtStart = as.Date('1980-01-01')
plotSingle(dfRecession, df.data, "date", datay, getPlotTitle(df.symbols, datay), "Date", 
            getPlotYLabel(df.symbols, datay), c(dtStart, Sys.Date()), ylim, TRUE)

datay <- "GSPC.CloseBYMDY.Close"
ylim <- c(0, 20)
dtStart = as.Date('1980-01-01')
plotSingle(dfRecession, df.data, "date", datay, getPlotTitle(df.symbols, datay), "Date", 
            getPlotYLabel(df.symbols, datay), c(dtStart, Sys.Date()), ylim, TRUE)

S&P 500 Normalized moving average

Look at moving average relationship by dividing the S&P 500 open price by the 200 day SMA.

datay <- "GSPC.Open_mva200_Norm"
ylim <- c(50, 125)
dt.start = as.Date('2008-01-01')
plotSingleQuick(dfRecession, df.data, datay, ylim, dt.start)

Crossovers

Look at the 50 DMA versus 200 DMA, often used as a technical indicator of market direction.

datay <- "GSPC.Open_mva050_mva200"
ylim <- c(-200, 200)
plotSingleQuick(dfRecession, df.data, datay, ylim, dtStartBackTest)

datay <- "GSPC.Open_mva050_mva200_sig "
ylim <- c(0.0, 1.0)
plotSingleQuick(dfRecession, df.data, datay, ylim, dtStartBackTest)

S&P 500 TTM P/E

Take a look at some of the earnings trends from SilverBlatt’s sheet.

Market prices can out-run earnings so take a look at price to earnings.

Focus on some of the more recent activity

S&P 500 Sales

datay <- "MULTPLSP500SALESQUARTER"
ylim <- c(500, 1500)
dt.start <- as.Date('1999-01-01')
plotSingleQuick(dfRecession, df.data, datay, ylim, dt.start)

datay <- "MULTPLSP500SALESQUARTER"
ylim <- c(500, 1500)
dt.start = as.Date('2001-01-01')
plotSingleQuick(dfRecession, df.data, datay, ylim, dt.start)

Unit Profits

The series peaks in the middle of a bull market.

S&P 500 dividends

12-month real dividend per share inflation adjusted November, 2018 dollars. Data courtesy Standard & Poor’s and Robert Shiller.

https://www.quandl.com/data/MULTPL/SP500_DIV_MONTH-S-P-500-Dividend-by-Month

Evaluate year over year dividend growth.

Real value dividend growth.

datay <- "MULTPLSP500DIVMONTH_YoY"
ylim <- c(-40, 20)
dtStart = as.Date('2001-01-01')
plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart, b.percentile = FALSE)

S&P 500 dividend yield (12 month dividend per share)/price. Yields following September 2018 (including the current yield) are estimated based on 12 month dividends through September 2018, as reported by S&P. Sources: Standard & Poor’s for current S&P 500 Dividend Yield. Robert Shiller and his book Irrational Exuberance for historic S&P 500 Dividend Yields.

https://www.quandl.com/data/MULTPL/SP500_DIV_YIELD_MONTH-S-P-500-Dividend-Yield-by-Month

datay <- "MULTPLSP500DIVYIELDMONTH"
ylim <- c(0, 12)
dtStart = as.Date('1950-01-01')
plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart, b.percentile = FALSE)

datay <- "MULTPLSP500DIVYIELDMONTH"
ylim <- c(1, 4)
dtStart = as.Date('2001-01-01')
plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart, b.percentile = FALSE)

S&P 500 Volume

The log of the S&P volume has some interesting patterns, but nothing that seems to help with a recession indicator.

That is one spiky data series. Not sure there is a lot to help us here.

Russell 2000

Take a look at recent activity in the small cap market.

S&P 500 to Rusell 2000

Thirty day movement

Correlation

## Warning in max.default(structure(numeric(0), class = "Date"),
## structure(numeric(0), class = "Date"), : no non-missing arguments to max;
## returning -Inf
## Warning in min.default(structure(numeric(0), class = "Date"),
## structure(numeric(0), class = "Date"), : no non-missing arguments to min;
## returning Inf

S&P 500 to MDY (Mid-cap) 2000 Correlation

datay1 <- "RLG.Open"
ylim1 <- c(0, 2500)

datay2 <- "MDY.Open"
ylim2 <- c(0, 500)

dtStart <- as.Date("1jan2003","%d%b%Y")

w <- 30
corrName <-
  calcRollingCorr(dfRecession,
                  df.data,
                  df.symbols,
                  datay1,
                  ylim1,
                  datay2,
                  ylim2,
                  w,
                  dtStart)
## Warning in max.default(structure(numeric(0), class = "Date"),
## structure(numeric(0), class = "Date"), : no non-missing arguments to max;
## returning -Inf
## Warning in min.default(structure(numeric(0), class = "Date"),
## structure(numeric(0), class = "Date"), : no non-missing arguments to min;
## returning Inf

Dividend Stocks

This is an interesting series, they should perform better through the recessions. Unfortunately they are short lived so there is not much data so this is more of a place holder for now.

datay <- "NOBL.Open"
ylim <- c(40, 90)
dt.start <- as.Date('2014-01-01')
plotSingleQuick(dfRecession, df.data, datay, ylim, dt.start)

Margin and option data

NYSE Margin Debt

Taking a look at margin debt. NYXDATA stopped providing NYSE margin debt data on Dec 2017. Data is available from FINRA, but it includes more accounts than the data did for NYXdata. I stitched togeter the data sets: data after Jan 2010 include NYSE+Others, data prior is just NYSE account data scaled up to match the FINRA data.

It tends to creep up when there is a frenzy in the stock market.

datay <- "FINRAMarginDebt_Log"
ylim <- c(5, 15)
plotSingleQuick(dfRecession, df.data, datay, ylim)

Take a close look at recent activity

Sometimes it is more helpful to view year over year growth.

More near-term trend.

Take a look at some of the correlations

datay1 <- "FINRAMarginDebt_YoY"
ylim1 <- c(-100, 100)

datay2 <- "GSPC.Close_YoY"
ylim2 <- c(-100, 100)

dtStart <- as.Date("1jan1995","%d%b%Y")

w <- 90
corrName <-
  calcRollingCorr(dfRecession,
                  df.data,
                  df.symbols,
                  datay1,
                  ylim1,
                  datay2,
                  ylim2,
                  w,
                  dtStart)

Comparison to the Russell 2000

datay1 <- "FINRAMarginDebt_YoY"
ylim1 <- c(-100, 100)

datay2 <- "RLG.Close_YoY"
ylim2 <- c(-100, 100)

dtStart <- as.Date("1jan1995","%d%b%Y")

w <- 90
corrName <-
  calcRollingCorr(dfRecession,
                  df.data,
                  df.symbols,
                  datay1,
                  ylim1,
                  datay2,
                  ylim2,
                  w,
                  dtStart)

OCC Options Volumes

See what is happening with the options volumes for equities. (From: https://www.theocc.com/webapps/historical-volume-query)

Looks like options on non-equity co-occurs with peaks/troughs?.

Market Volatility

Take a look at some of the indications of market volatility

CBOE VIX

As markets become complacent (low VIX) and high values, peaks often occur.

Compare the VIX to some of the ETF’s out there.

There

Not much predictive in VIX, take a quick look at the smoothed derivative.

S&P Daily Swings

Daily changes in the S&P should correlate well with the VIX.

More of a correlating series than a predictor.

Employment and payrolls

Unemployment rates

Unemployment rates will probably be useful, let’s take a look at the U-3. The data is a little noisy so there is also a smoothed version plotted. There seems to be a relationship between the unemployment rate and the recessions, but it could be a lagging indicator. This will be explored a little bit more later.

Looking at the unemployment rate, the eye is drawn to the rise and fall of the data, this suggests that the derivative might be helpful as well. The figure below shows the results, using a Savitzky-Golay FIR filter. It looks like the unemployment rate peaks in the middel of the recession. That peak might be a good buy signal.

Continuing Claims

A good measure of how much unemployment is growing.

Continued claims, also referred to as insured unemployment, is the number of people who have already filed an initial claim and who have experienced a week of unemployment and then filed a continued claim to claim benefits for that week of unemployment. Continued claims data are based on the week of unemployment, not the week when the initial claim was filed

https://fred.stlouisfed.org/series/CCNSA

A good measure of how much unemployment is growing

Unemployment rates, year-over-year

Both the headline unemployment and U-6 number changes are similar. During the upswing on the cycle it does look like the headline number falls faster than U-6

The second derivative of the unemployment rate does have zero crossings near the middle point of a recession. This would make it a helpful buy signal for the trading strategy.

Unemployment rates, similar periods

Historically the last two years of record low unemployment appear most similar to the 1971-1973 time frame. Just before inflation took off.

Unemployment rates, U-6 and headline number.

Let’s also take a look at the total unemployed, U-6. It continues to fall as the headline number stabilizes as people return to the work force. An indicator the cycle is beginning to top out.

Difference between U6 and U3 to see how close the economy is getting to full employment.

Unemployment and market bottoms

## Scale for 'y' is already present. Adding another scale for 'y', which will
## replace the existing scale.

Initial jobless claims

We will also take a look at initial jobless claims, this should start to rise just before the unemployment rate.

It looks like the jobless claim tend to peak more towards the end of the recession. It does not seem to be as strong of a sell indicator as the U-3 rate.

Jobless claims have a seasonal component to them. One way to reduce this effect is to calculate year over year growth. That helps some, the peaks seem to be more closely aligned with the middle to end of recessions.

Take a closer look at recent data

Take a look at the percentage of the population looking for work

A bit more recent trend

Unemployment Level

ADP data here. comes out before the official numbers.

Look at the year-over-year change in ADP.

ADP data divided by the population

Payrolls

Look at the BLS data on payrolls. Check the NSA series, then we will look at YoY data.

Hours worked

Sparked by an article at Mises (https://mises.org/wire/how-alexandria-ocasio-cortez-misunderstands-american-poverty), take a look at average weekly hours

The time series is pretty lumpy, plot the YoY change

A more recent look at average weekly hours of production

Industrial Production

Industrial production is also known to fall during an economic downturm, let’s take a look at some of the data from the FRED on industrual production. It does seem to peak prior to a recession so let’s smooth and look at the derivative as it might be a good indicator as well.

Industrial production over the last ten years or so

The derivative isn’t bad, but it sometimes crosses zeros well into a recession. That is less helpful as either a buy or sell indicator. A better measure might year over year (YoY) change.

The year over year change has a similar appearance. The low values at the beginning make the year over year values larger than the more recent values. Seems like it will rank low a reliable indicator.

datay1 <- "INDPRO_YoY"
ylim1 <- c(-20, 12)

datay2 <- "GSPC.Close_YoY"
ylim2 <- c(-100, 50)

dtStart <- as.Date("1jan1981","%d%b%Y")

w <- 360
corrName <- calcRollingCorr(dfRecession, df.data, df.symbols, datay1, ylim1, datay2, ylim2, w, dtStart)

Retail Sales

Retail sales, aggregate

Retail sales also change during recession. As the plot below shows, it seems to follow the trend of industrial production. It might be too strongly correlated to add much to the model. The will be examined in the correlation section.

The derivative of retail sales is a little more erratic than is was the industrial products. Looks like it might be helpful to include in the model as well.

Retail sales, aggregate year-over-year

Take a look at year-over-year changes

Retail sales and unemployment correlations

Let’s see how that looks on year over year basis. Interesting to compare to unemployment rates there appears to a correlation over the long term.

## Scale for 'y' is already present. Adding another scale for 'y', which will
## replace the existing scale.

There is some similarity. The rolling correlation shows the inverse relationship prior to a recession.

datay1 <- "RSALESAGG_YoY"
ylim1 <- c(-12.5, 7.5)

datay2 <- "UNEMPLOY_YoY"
ylim2 <- c(-30, 100)

dtStart <- as.Date("1jan1970","%d%b%Y")

w <- 180
corrName <- calcRollingCorr(dfRecession,df.data, df.symbols, datay1, ylim1, datay2, ylim2, w, dtStart)

Retail sales correlation and industrial production

Industrial production and retail sales look very similar so the plot below shows the 360 correlation. The corerlation does tend to fall around a recession, although 2008 was so bad that they both fell together. Not sure if it is that useful.

datay1 <- "INDPRO"
ylim1 <- c(40, 125)

datay2 <- "RSALESAGG"
ylim2 <- c(100000, 200000)

dtStart <- as.Date("1jan1981","%d%b%Y")

w <- 30
corrName <- calcRollingCorr(dfRecession, df.data, df.symbols, datay1, ylim1, datay2, ylim2, w, dtStart)

It is interesting to see the strong correlation; however, I suspect this is due to more to the shape of the trends. How do the YoY correlations look? They are a little less correlated, probably better to use in the machine learning later.

datay1 <- "INDPRO_YoY"
ylim1 <- c(-20, 20)

datay2 <- "RSALESAGG_YoY"
ylim2 <- c(-20, 20)

dtStart <- as.Date("1jan1981","%d%b%Y")

w <- 30
corrName <- calcRollingCorr(dfRecession, df.data, df.symbols, datay1, ylim1, datay2, ylim2, w, dtStart)

Advance Retail Sales

This is an advanced estimate of the retail sales value.

Also take a look at year over year

Retail sales and the labor market

Income

Real Personal Income

Real Personal Income (Excluding Transfer, Annual)

During a recession real personal income falls. In the plot the peaks can be seen prior to each recession.

datay <- "W875RX1"
ylim <- c(3000, 15000)
plotSingleQuickModern(datay, ylim)

The features we are interested in are the peaks and valleys so we’ll use the derivative to get to those. Interesting, there is usually a first zero crossing before a recession and a second during or just after the recession.

Real personal income might have some seasonal variance, but it seems the year over year change tells the same story.

Price and cost measures

This section shows price and cost measures.

Two commonly used indexes are the CPI (consumer price index) and PPI (producer price index). CPI tries to show final prices paid for goods and services by urban U.S. consumers. This index includes sales tax and imports. The PPI attempts to reflect the prices paid at all stages of production, including goods and services purchases as inputs as well as goods and services purchased by consumers from retail and producer sellers. The PPI does not include imports or sales tax. The CPI reflects all rebates and financing plans wherease the PPI reflects only those rebate and financing plans provided by the producer. For example if an automotive manufacturer offers a rebate of $500 and the dealer offers an additional rebate of $500 then the PPI would reflect only the automotive manufacturer rebate, but the CPI would reflect both rebates.

Sources; https://www.bls.gov/opub/hom/pdf/cpihom.pdf and https://www.bls.gov/opub/hom/pdf/ppi-20111028.pdf.

Consumer price index

What does CPI look like?

datay <- "CPIAUCSL"
ylim <- c(0, 300)
plotSingleQuickModern(datay, ylim)

Check out the YoY growth

datay <- "CPIAUCSL_YoY"
ylim <- c(-2, 15)
plotSingleQuickModern(datay, ylim)

CPI to PPI

Suggested by Charlie, it can be helpful to look at the relationship between producer prices and consumer prices.

## Scale for 'y' is already present. Adding another scale for 'y', which will
## replace the existing scale.

Producer Price Index (Commodities)

Commodities

Basket

Take a look at some trends of baskets of commodities.

Crude oil

Look at a trend of West Texas Intermediate (WTI)

This is ticker data from yahoo

Take a look at both WTI and Brent crude.

Real price of crude using producer price index for commodities

Gold

As risks increase investors often flock to safe haven assets like gold. An up-tick in prices can indicate investor uncertainty. This can be seen in the nominal price plot around 1980 and again in 2007.

This plots out the real price of gold by two different deflators. PPI corrected price is a little higher, to be expected since CPI also includes the effects of sales tax and imports. The spike in 1980 is especially pronounced in this series.

See how nominal and real prices look year over year. From the long-term view seems like there is little difference in the three series. Although not shown, even over the near-term there is little difference in the series.

See how gold correlates with the VIX. Both gold and VIX should respond to investor axiety, but it doesn’t look like it correlates very well.

## `geom_smooth()` using formula 'y ~ x'
## Warning: Removed 245 rows containing non-finite values (stat_smooth).

Copper

Dr. Copper has a reputation as an indicator of economic malaise, but it does not seem to have much of a correlation with the recessions. The series below is from CME via Quandl. It has a lot of data so I am also looking at the smoothed version.

Copper is one of the commodities in the PPI so it is a bit of a proxy for how copper is doing relative to the basket of commodities.

The change in prices, year over year, do generally peak prior to a recession. The time and shape of this peak varies, but it still might be helpful. A couple of the large troughs do seem to correlate with the end of the recession. Likely this is because industrial production has also fallen.

There is some correlation between copper and the smooth recession initiator, especially at the end of the recession.

Might be easier to see correlation in a dot plot format.

## `geom_smooth()` using formula 'y ~ x'
## Warning: Removed 342 rows containing non-finite values (stat_smooth).

This is a legacy series from FRED. It has not been updated in a couple of years so I am assuming it will go away.

Oil Services

Amazing events in the first half of 2020, take a look at those

See how the players are doing

Federal Reserve

The federal reserve has an impact on the economy, here are some data series relating to that.

Little bit closer

datay <- "WALCL"
ylim <- c(0, 7500)
dtStart = as.Date('2003-01-01')
plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart)

Federal Reserve Reverse Repo Agreements

Compare liabilities to reverse repo trends

Spiky, might be easier to look at year-over-year

Normalized by GDP

datay <- "WLRRAL.by.GDP"
ylim <- c(0, 4)
dtStart = as.Date('2003-01-01')
plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart)

Overnight Bank Funding Rate

“The overnight bank funding rate is calculated using federal funds transactions and certain Eurodollar transactions. The federal funds market consists of domestic unsecured borrowings in U.S. dollars by depository institutions from other depository institutions and certain other entities, primarily government-sponsored enterprises, while the Eurodollar market consists of unsecured U.S. dollar deposits held at banks or bank branches outside of the United States. U.S.-based banks can also take Eurodollar deposits domestically through international banking facilities (IBFs). The overnight bank funding rate (OBFR) is calculated as a volume-weighted median of overnight federal funds transactions and Eurodollar transactions reported in the FR 2420 Report of Selected Money Market Rates. Volume-weighted median is the rate associated with transactions at the 50th percentile of transaction volume. Specifically, the volume-weighted median rate is calculated by ordering the transactions from lowest to highest rate, taking the cumulative sum of volumes of these transactions, and identifying the rate associated with the trades at the 50th percentile of dollar volume. The published rates are the volume-weighted median transacted rate, rounded to the nearest basis point.” https://www.newyorkfed.org/markets/obfrinfo.

Secured Overnight Financing Rate

“The Secured Overnight Financing Rate (SOFR) is a broad measure of the cost of borrowing cash overnight collateralized by Treasury securities. The SOFR includes all trades in the Broad General Collateral Rate plus bilateral Treasury repurchase agreement (repo) transactions cleared through the Delivery-versus-Payment (DVP) service offered by the Fixed Income Clearing Corporation (FICC), which is filtered to remove a portion of transactions considered “specials” " https://apps.newyorkfed.org/markets/autorates/sofr

Take a look at the variation (99th - 1st percentile)

Reserve Balances with Federal Reserve Banks

Hard to get a sense of these series in the absolute. Take a look relative to GDP.

By double entry book-keeping reserves+loans (assets) = deposit (liabilities). Does that really work?

Correlation Between Reserves and Total Loans

As reserves increase there should be less lending. That correlation generally holds.

## Scale for 'y' is already present. Adding another scale for 'y', which will
## replace the existing scale.

Did the reserve balances increase after the 2016 and 2018 drops? Not in the same way. There are some relationships between the equities market and the reserves though.

Explicitly correlate reserve balances and total loans. It is a weak and noisy correlation.

## `geom_smooth()` using formula 'y ~ x'
## Warning: Removed 990 rows containing non-finite values (stat_smooth).

Interest on excess reserves

Monetary Base

Currency trend, base

This used to trend along with GDP. It doesn’t anymore.

Money supplies

Basic currency trend (currency component of M1)

datay <- "WCURRNS_YoY"
dtStart = as.Date('1980-01-01')
ylim <- c(0, 17)
myplot <- plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart)
myplot

datay <- "WCURRNS_YoY"
dtStart = as.Date('2000-01-01')
ylim <- c(0, 20)
myplot <- plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart)
myplot

The rate of change of money supply could be an indicator of a recession. Let’s see how that compares.

Intervention in the repo market

The federal reserve provides liquidity to the repo market, summary of that action

European central bank

The European central band (ECB) has taken a different path compared to the US Federal Reserve bank.

## Scale for 'y' is already present. Adding another scale for 'y', which will
## replace the existing scale.

Federal Debt

The government is a big driver of the economy, let’s see what it is doing in the debt markets.

datay <- "GFDEBTN"
ylim <- c(0, 28000000)
plotSingleQuick(dfRecession, df.data, datay, ylim)

datay <- "GFDEBTN_Log"
ylim <- c(12, 18)
plotSingleQuick(dfRecession, df.data, datay, ylim)

datay <- "GFDEBTN_YoY"
ylim <- c(-10, 25)
plotSingleQuick(dfRecession, df.data, datay, ylim)

Federal debt as percent GDP

datay <- "GFDEGDQ188S"
ylim <- c(30, 150)
plotSingleQuick(dfRecession, df.data, datay, ylim)

Federal deficit as percent GDP

datay <- "FYFSGDA188S"
ylim <- c(-30, 5)
plotSingleQuick(dfRecession, df.data, datay, ylim)

Charlie Hatch has a nice format of deficit versus debt:

## Scale for 'y' is already present. Adding another scale for 'y', which will
## replace the existing scale.

Nonfinancial Corporate Business Debt

What about Nonfinancial corporate business and debt securities? Hopefully this doesn’t follow the business loan trends.

That is crazy steep. Time for a log format, see if that brings out the peaks and troughs. That’s a litte better, it looks like there might be a change in slope prior to the recessions.

The derivative doesn’t seem to be much help. There is not much correlation between the zero crossings and the NEBR recessions.

Debt cycle

This analysis roughly follows the ideas in Big Debt Crises book by Ray Dalio.

Total loans

One business cycle theory describes recessions as a market adjustment to mis-allocated assets, often fueled by an credit expansion. That makes the volume of loans an interesting feature to look at. In the presentation of data it looks like the great recession had the largest impact.

Plotting the year over year growth rate helps pull out those small changes in the early years in the data. Peaks can be seen prior to most recessions.

Zoom in to the last couple of decades

As long term interest rates rise, loans should start to tick down. To check this, the total loans and 10 to 1 year spreads are plotted. This is generally the trend observed.

There is a good correlation between these two variables. This next section plots that correction explicitly.

Total loans as percent of GDP

This is the total loans. I think the picture is too broad to point to a specific sector of the economy. The debt burden assumes interest rates are tied to the 10-year treasury: (TOTLNNSA * DGS10) / 100

Commercial and industral loans

Business loans should slow before the recession (a contraction in credit as rates rise).

Commercial and industrial loans as percent of GDP and and income

Look at business debt normalized by GDP over the entire time series. This ratio often peaks at the mid-point of a recession.

https://www.wsj.com/articles/this-isnt-your-fathers-corporate-bond-market-11590574555

“Bonds are behaving more like bank debt, which tends to remain stable or even increase at the onset of recessions, as lenders keep distressed clients afloat—and only later turn off the taps. This was confirmed by a recent report from the Bank for International Settlements. It also found a tight link between this lending cycle and the “real” economy’s booms and busts."

I assume that interest is related to the 10-year treasure: (TOTCINSA * DGS10) / 100

Farm loans

See how the farming sector is fairing.

Real estate loans

Data taken from H.8 Assets and Liabilities of Commercial Banks in the United States. Take a look at SA and NSA data series as weekly and month updates. It should all be similar at this scale.

This gives a big picture, but makes it hard to connect the loans with the income needed to cover those loans. In the next section, loans will be broken up by commercial and residential.

Real Estate (Residential)

In absolute terms the mortgages have increased, but it does not appear to be out of line with the overall economy.

Normalized by GDP it is easier to see the peak in 2008 and that loan levels appear reasonable at the commercial banks.

Maybe the GSE’s are making loans. Take a look at the total mortgages from Z.1 as a percentage of GDP. That does not look too far off trend (ignoring that peak in 2008).

I am assuming that personal income is paying for the mortgages.

Real estate (residential) as percent of GDP and and income

## Warning: Removed 1 rows containing missing values (geom_text).

Consumer loans

Focusing on the consumer sector the growth in debt and incomes can be directly compared. Personal income, as a percent of GDP, remains nearly constant. It is not uncommon for the personal income to rise prior to a recession. Likely this reflect increasing asset prices and market returns. Also interesting to see the loans pick up after interest rates dropped in 1982.

Consumer loans as percent of GDP and and income

Take a closer look since the 2008 recession. Looks like loans are starting to slow as the interest burden rises and incomes remain stable. There are some anomolies in the A065RC1A027NBEA data series because it only updates onces a year. the PI series updates once a month but is noisier and seasonally adjusted. It also shows incomes rising in the middle of the 2008 recession, which doesn’t seem to be accurate.

## Warning: Removed 1 rows containing missing values (geom_text).

## Warning: Removed 1 rows containing missing values (geom_text).
## Warning: Removed 1 rows containing missing values (geom_hline).

Repo market

This market went through some stress in 2008, it is happening again so setup some plots to watch it.

Nonfincial corporate business security repo asset level

Bonds

T-Bills and Yield Curve

Speaking of loans, interest rates also play into this. This analysis will focus on treasure bills. The 3-month is plotted below. The yield flattens before a recession as investors go long on bonds and short on equities.

datay <- "TB3MS"
datay.aux <- "DTB3"
ylim <- c(0, 20)
p1 <- plotSingleQuickModern(datay, ylim)
p1 + geom_line(data=df.data, aes_string(x="date", y=datay.aux, colour=shQuote(datay.aux)), na.rm = TRUE)

datay <- "TB3MS"
datay.aux <- "DTB3"
ylim <- c(0, 2.5)
dtStart = as.Date('2017-01-01')
p1 <- plotSingle(dfRecession, df.data, "date", datay, getPlotTitle(df.symbols, datay), "Date", 
            getPlotYLabel(df.symbols, datay), c(dtStart, Sys.Date()), ylim, TRUE)
p1 + geom_line(data=df.data, aes_string(x="date", y=datay.aux, colour=shQuote(datay.aux)), na.rm = TRUE)

Check out LIBOR and fed funds rate

The 1-year is plotted below. The yield flattens before a recession as investors go long on bonds and short on equities.

datay <- "DGS10"
datay.aux <- "TNX.Close"
ylim <- c(0, 20)
p1 <- plotSingleQuickModern(datay, ylim)
p1 + geom_line(data=df.data, aes_string(x="date", y=datay.aux, colour=shQuote(datay.aux)), na.rm = TRUE)

Close in, the trend towards inversion be more easily seen. I am also comparing data from the CBOE as well as FRED.

Bond yields are a good proxy for interest rates. As rates rise the theory goes that loans should decrease (inverse correlation).

And a longer window

The yield curve (30 year bond rate minus the 10 year bond rate) may not be a good recession indicator, but a collapse is not good (https://blogs.wsj.com/moneybeat/2018/04/30/theres-more-than-one-part-of-the-yield-curve-getting-flatter/).

The yield curve (10 year bond rate minus the 1 year bond rate) seems to a good indicator of an oncoming recession. It could be a buy indicator by itself.

More recent data

Just the last 24 months or so.

Plot the 10 Year to 3 month over a few decades to see what the outling cases look like

The last two year compare favorably with the period around the 2015-2016 turndown, driven primarily by slowing of the Chinese GDP. Not a debt-driven cycle.

This plot format was suggested by a mises.org article (https://mises.org/wire/yield-curve-accordion-theory), but they only went back to 1988. The date seemed arbitrary so I went back further in time.

Take a look at more recent data

Try looking at a 1-year average of the above time series

High quality bonds

datay <- "AAA"
ylim <- c(2.5, 10)
dtStart = as.Date('1997-01-01')
plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart)

High quality bonds to 10-year treasury

High quality bonds long-term trend.

datay <- "DGS10ByAAA"
ylim <- c(1, 6.0)
dtStart = as.Date('1967-01-01')
plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart)

High quality bonds near-term trend.

datay <- "DGS10ByAAA"
ylim <- c(1, 6.0)
dtStart = as.Date('2007-01-01')
plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart)

High yield spread

“This data represents the Option-Adjusted Spread (OAS) of the ICE BofAML US Corporate A Index, a subset of the ICE BofAML US Corporate Master Index tracking the performance of US dollar denominated investment grade rated corporate debt publicly issued in the US domestic market. This subset includes all securities with a given investment grade rating A. The ICE BofAML OASs are the calculated spreads between a computed OAS index of all bonds in a given rating category and a spot Treasury curve. An OAS index is constructed using each constituent bond‚Äôs OAS, weighted by market capitalization. When the last calendar day of the month takes place on the weekend, weekend observations will occur as a result of month ending accrued interest adjustments.”

  • ICE Benchmark Administration Limited (IBA), ICE BofAML US Corporate A Option-Adjusted Spread [BAMLC0A3CA], retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/BAMLC0A3CA, July 4, 2019.
datay <- "BAMLC0A3CA"
ylim <- c(0, 7)
dtStart = as.Date('1997-01-01')
plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart)

Municipal bond market

Suggest by a WSJ article, change in volume for high-risk muni’s. Doesn’t look like there is much too it yet.

https://www.wsj.com/articles/risky-municipal-bonds-are-on-a-hot-streak-11558949401?mod=hp_lead_pos3

datay <- "HYMB.Close"
ylim <- c(40, 62)
dtStart = as.Date('2011-01-01')
p1 <- plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart)

p1 <-
  p1 + geom_vline(
    xintercept = as.Date("2015-08-24"),
    linetype = "dashed",
    color = "grey",
    size = 1.0
  )

p1 <-
  p1 + geom_vline(
    xintercept = as.Date("2016-01-08"),
    linetype = "dashed",
    color = "grey",
    size = 1.0
  )
p1 <-
  p1 + geom_vline(
    xintercept = as.Date("2018-02-05"),
    linetype = "dashed",
    color = "grey",
    size = 1.0
  )
p1 <-
  p1 + geom_vline(
    xintercept = as.Date("2018-10-11"),
    linetype = "dashed",
    color = "grey",
    size = 1.0
  )

datay <- "HYMB.Volume"
ylim <- c(0, 1750000)
p1.vol <- plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart)

p1.vol <-
  p1.vol + geom_vline(
    xintercept = as.Date("2015-08-24"),
    linetype = "dashed",
    color = "grey",
    size = 1.0
  )

p1.vol <-
  p1.vol + geom_vline(
    xintercept = as.Date("2016-01-08"),
    linetype = "dashed",
    color = "grey",
    size = 1.0
  )
p1.vol <-
  p1.vol + geom_vline(
    xintercept = as.Date("2018-02-05"),
    linetype = "dashed",
    color = "grey",
    size = 1.0
  )
p1.vol <-
  p1.vol + geom_vline(
    xintercept = as.Date("2018-10-11"),
    linetype = "dashed",
    color = "grey",
    size = 1.0
  )


datay <- "GSPC.Open"
datay_aux <- "GSPC.Close"
ylim <- c(1500, d.GSPC.max )
p2 <-
  plotSingle(
    dfRecession,
    df.data,
    "date",
    datay,
    getPlotTitle(df.symbols, datay),
    "Date",
    getPlotYLabel(df.symbols, datay),
    c(dtStart, Sys.Date()),
    ylim,
    TRUE
  )

p2 <-
  p2 + geom_vline(
    xintercept = as.Date("2015-08-24"),
    linetype = "dashed",
    color = "grey",
    size = 1.0
  )
p2 <-
  p2 + geom_vline(
    xintercept = as.Date("2016-01-08"),
    linetype = "dashed",
    color = "grey",
    size = 1.0
  )
p2 <-
  p2 + geom_vline(
    xintercept = as.Date("2018-02-05"),
    linetype = "dashed",
    color = "grey",
    size = 1.0
  )
p2 <-
  p2 + geom_vline(
    xintercept = as.Date("2018-10-11"),
    linetype = "dashed",
    color = "grey",
    size = 1.0
  )


grid.arrange(p1,
             p1.vol,
             p2,
             ncol = 1,
             top = "High Yield Muni's and S&P Price")

Total Loans and yield curve correlation

This relationship was suggest by Charlie and it is an interesting one. As the yield curve flattens (10-year and 1-year rates converge), total loans grow. The generalization is not always accurate, but it does fit.

## `geom_smooth()` using formula 'y ~ x'

I wanted to see how this looked compared to the 3 month

## `geom_smooth()` using formula 'y ~ x'
## Warning: Removed 282 rows containing non-finite values (stat_smooth).

Consumer loans and yield curve correlation

Compared to business loans, consumer loans seem to have to response to the 10Y to 3M yield curve.

## `geom_smooth()` using formula 'y ~ x'
## Warning: Removed 311 rows containing non-finite values (stat_smooth).

Business loans and yield curve correlation

## `geom_smooth()` using formula 'y ~ x'
## Warning: Removed 102 rows containing non-finite values (stat_smooth).

That’s pretty good correlation. Let’s see what the rolling correlation looks like.

datay1 <- "TOTLNNSA_YoY"
ylim1 <- c(-10, 20)

datay2 <- "DGS10TO1"
ylim2 <- c(-5, 10)

dtStart <- as.Date("1jan1960","%d%b%Y")

w <- 360
corrName <- calcRollingCorr(dfRecession, df.data, df.symbols, datay1, ylim1, datay2, ylim2, w, dtStart)

datay1 <- "TOTLNNSA_YoY"
ylim1 <- c(-10, 20)

datay2 <- "DGS10TO1"
ylim2 <- c(-5, 10)

dtStart <- as.Date("1jan1960","%d%b%Y")

w <- 720
corrName <- calcRollingCorr(dfRecession, df.data, df.symbols, datay1, ylim1, datay2, ylim2, w, dtStart)

One other items, let’s see how loans do versus the federal funds rate

## `geom_smooth()` using formula 'y ~ x'

EIA Information

Petroleum

Consumption/Sales > Refiner Motor Gasoline Sales Volumes > by Product > Motor Gasoline > by Area > U.S.

Total Energy

Crude Oil and Natural Gas Resource Development > Crude Oil and Natural Gas Drilling Activity Measurements

Baker Hughes Rig Count

BEA Supplemental Estimates, Motor Vehicles

Definitions

Autos–all passenger cars, including station wagons.
Light trucks–trucks up to 14,000 pounds gross vehicle weight, including minivans and
sport utility vehicles. Prior to the 2003 Benchmark Revision light trucks were up to 10,000 pounds.
Heavy trucks–trucks more than 14,000 pounds gross vehicle weight.
Prior to the 2003 Benchmark Revision heavy trucks were more than 10,000 pounds.
Domestic sales–United States (U.S.) sales of vehicles assembled in the U.S., Canada, and Mexico.
Foreign sales–U.S. sales of vehicles produced elsewhere.
Domestic auto production–Autos assembled in the U.S.
Domestic auto inventories–U.S. inventories of vehicles assembled in the U.S., Canada, and Mexico.

TAble 6 - Light Vehicle and Total Vehicle Sales

Auto sales

A WSJ article suggested that auto sales might be a good indicator so bring that to the mix. It does have troughs that correlate with recessions

There might be some seasonal variance in the auto sales so lets take a look at the year over year. The data is pretty noisy, it probably will not make a very good indicator.

BEA Gross Domestic Product

Data in this section come from the Bureau of Economic Analysis.

Table 1.1.5. Gross Domestic Product

[Billions of dollars] Seasonally adjusted at annual rates

A191RC: Gross Domestic Product - Line 1

GDP numbers tend to lag so this series is truly an afterthought. But it does have some correlation with the recessions.

GDP does not reflect the capacity of the economy nor the efficiency. Shrinking capacity and lower prices at constant volumes would indicate improvements in effeciency/productivity which is good for the economy, but does not move the GDP upward.

Looks like the year over year change on the GDP should correlate well with unemployment.

Table 1.1.9. Implicit Price Deflators for Gross Domestic Product

[Index numbers, 2012=100] Seasonally adjusted

A191RD: Gross Domestic Product - Line 1

This is GDP price deflator series.

GDP normalized by CPI

Normalize GDP by CPI

Economic yield curve (GDP to 1-year treasury)

GDP versus the yield on the 1-year. This series was prompted by an article suggesting that the “economic yield curve” should be used to indicate a recession rather than an inverted yield curve. Less of indicator and more of concurrent confirmation of recession. Not sure why they would be related either.

Economic yield curve (GDP to 3-month treasury)

Same idea as above, but applied the 3-month treasury.This one has fewer false triggers, but is not as helpful as 10Y to 3M spread in predicting a recession.

A824RC: National defense Federal Gov’t Expenditures - Line 24

U.S. Bureau of Economic Analysis, Federal Government: National Defense Consumption Expenditures and Gross Investment [FDEFX], retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/FDEFX, April 6, 2021.

A825RC: Nondefense Federal Gov’t Expenditures - Line 25

U.S. Bureau of Economic Analysis, Federal Government: Nondefense Consumption Expenditures and Gross Investment [FNDEFX], retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/FNDEFX, April 6, 2021.

Table 6.16D. Corporate Profits by Industry

Select series from Table 6.16D

A051RC: Corporate profits with inventory and capital consumption adjustment

From BEA’s documentation (https://www.bea.gov/media/5671):

“BEA’s featured measure of corporate profits — profits from current production - provides a comprehensive and consistent economic measure of the income earned by all U.S. corporations. As such, it is unaffected by changes in tax laws, and it is adjusted for nonreported and misreported income. It excludes dividend income, capital gains and losses, and other financial flows and adjustments, such as deduction for “bad debt.” Thus, the NIPA measure of profits is a particularly useful analytical measure of the health of the corporate sector. For example, in contrast to other popular measures of corporate profits, the NIPA measure did not show the large run-up in profits during the late 1990s that was primarily attributable to capital gains.

Profits after tax with IVA and CCAdj is equal to corporate profits with IVA and CCAdj less taxes on corporate income. It provides an after-tax measure of profits from current production."

Data is Line 1 of Table 6.16D

A053RC: Corporate profits without inventory and capital consumption adjustment

Profits look a bit flat over the last several years in this series.

Table 2.6. Personal Income and Its Disposition, Monthly

Billions of dollars; months are seasonally adjusted at annual rates.

A065RC Personal Income - Line 1

BEA Account Code: A065RC

Personal income is the income that persons receive in return for their provision of labor, land, and capital used in current production and the net current transfer payments that they receive from business and from government.25 Personal income is equal to national income minus corporate profits with inventory valuation and capital consumption adjustments, taxes on production and imports less subsidies, contributions for government social insurance, net interest and miscellaneous payments on assets, business current transfer payments (net), current surplus of government enterprises, and wage accruals less disbursements, plus personal income receipts on assets and personal current transfer receipts. A Guide to the National Income and Product Accounts of the United States (NIPA) - (http://www.bea.gov/national/pdf/nipaguid.pdf)

Suggested Citation: U.S. Bureau of Economic Analysis, Personal Income [PI], retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/PI, July 11, 2019.

DPCERC: Personal consumption expenditures (PCE) - Table 2.1, Line 29

BEA Account Code: DPCERC Personal consumption expenditures (PCE) is the primary measure of consumer spending on goods and services in the U.S. economy. 1 It accounts for about two-thirds of domestic final spending, and thus it is the primary engine that drives future economic growth. PCE shows how much of the income earned by households is being spent on current consumption as opposed to how much is being saved for future consumption. -https://www.bea.gov/system/files/2019-12/Chapter-5.pdf

Suggested Citation: U.S. Bureau of Economic Analysis, Personal Consumption Expenditures [PCE], retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/PCE, June 12, 2020

DPCERG: Personal consumption expenditures Price Index (PCEPI) - Table 2.1, Line 29

BEA Account Code: DPCERG The gross domestic product price index measures changes in prices paid for goods and services produced in the United States, including those exported to other countries. Prices of imports are excluded. The gross domestic product implicit price deflator, or GDP deflator, basically measures the same things and closely mirrors the GDP price index, although the two price measures are calculated differently. The GDP deflator is used by some firms to adjust payments in contracts.

The gross domestic purchases price index is BEA’s featured measure of inflation for the U.S. economy overall. It measures changes in prices paid by consumers, businesses, and governments in the United States, including the prices of the imports they buy.

BEA’s closely followed personal consumption expenditures price index, or PCE price index, is a narrower measure. It looks at the changing prices of goods and services purchased by consumers in the United States. It’s similar to the Bureau of Labor Statistics’ consumer price index for urban consumers. The two indexes, which have their own purposes and uses, are constructed differently, resulting in different inflation rates.

The PCE price index is known for capturing inflation (or deflation) across a wide range of consumer expenses and for reflecting changes in consumer behavior. For example, if the price of beef rises, shoppers may buy less beef and more chicken. Also, BEA revises previously published PCE data to reflect updated information or new methodology, providing consistency across decades of data that’s valuable for researchers. The PCE price index is used primarily for macroeconomic analysis and forecasting. -https://www.bea.gov/resources/learning-center/what-to-know-prices-inflation

Suggested Citation: U.S. Bureau of Economic Analysis, Personal Consumption Expenditures: Chain-type Price Index [PCEPI], retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/PCEPI, April 25, 2021.

A072RC: Personal Savings Rate - Line 35

Consumers tend to pull down their savings rates as unemployment decreases and market conditions improve. This series has tended to be unreliable due to the size of revisions during the comprehensive update carried out by the BEA. The last update on this series moved the rate from 4.2 to 6.7 percent.

(https://www.bloomberg.com/news/articles/2018-07-27/americans-have-been-saving-much-more-than-thought-new-data-show)

BEA Account Code: A072RC Personal saving as a percentage of disposable personal income (DPI), frequently referred to as “the personal saving rate,” is calculated as the ratio of personal saving to DPI. Personal saving is equal to personal income less personal outlays and personal taxes; it may generally be viewed as the portion of personal income that is used either to provide funds to capital markets or to invest in real assets such as residences.(https://www.bea.gov/national/pdf/all-chapters.pdf) A Guide to the National Income and Product Accounts of the United States (NIPA).

Suggested Citation: U.S. Bureau of Economic Analysis, Personal Saving Rate [PSAVERT], retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/PSAVERT, July 9, 2019.

Take a closer look at the last decade

The relationship between personal savings and unemployment (U-3) can be better visualized with a scatter plot

## `geom_smooth()` using formula 'y ~ x'
## Warning: Removed 201 rows containing non-finite values (stat_smooth).

The fit does not explain most of what is in the plot. Lets take a look at the rolling correlation.

datay1 <- "UNRATE"
ylim1 <- c(2, 12)

datay2 <- "PSAVERT"
ylim2 <- c(0, 35)

dtStart <- as.Date("1jan1985","%d%b%Y")

w <- 360
corrName <- calcRollingCorr(dfRecession, df.data, df.symbols, datay1, ylim1, datay2, ylim2, w, dtStart)

Personal savings to household net worth

A relationship between personal savings and household networth can be seen in a scatter plot. This was suggested by a WSJ article (https://blogs.wsj.com/dailyshot/2018/02/23/the-daily-shot-reasons-for-declining-u-s-household-savings-rate/).

## `geom_smooth()` using formula 'y ~ x'
## Warning: Removed 228 rows containing non-finite values (stat_smooth).

U.S. Census Bureau

U.S. International Trade in Goods and Services (FT900)

U.S. Bureau of Economic Analysis and U.S. Census Bureau, U.S. Imports of Goods by Customs Basis from China [IMPCH], retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/IMPCH, October 5, 2019.

New Houses Sold and For Sale by Stage of Construction and Median Number of Months on Sales Market

Read an article suggesting that housing sales and sales growth could be useful. FRED only has new home data so start there.

datay <- "HSN1FNSA"
ylim <- c(0, 200)
dtStart = as.Date('1964-01-01')
p1 <- plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart)

datay <- "HNFSUSNSA"
ylim <- c(0, 600)
p2 <- plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart)

datay <- "HNFSUSNSA.minus.HSN1FNSA"
ylim <- c(0, 600)
p3 <-
  plotSingle(
    dfRecession,
    df.data,
    "date",
    datay,
    getPlotTitle(df.symbols, datay),
    "Date",
    getPlotYLabel(df.symbols, datay),
    c(dtStart, Sys.Date()),
    ylim,
    TRUE
  )

grid.arrange(p1,
             p2,
             p3,
             ncol = 1,
             top = "New Housing Sales")

New housing yoy

New Privately-Owned Housing Units Authorized in Permit-Issuing Places

As provided by the Census, start occurs when excavation begins for the footings or foundation of a building. All housing units in a multifamily building are defined as being started when this excavation begins. Beginning with data for September 1992, estimates of housing starts include units in structures being totally rebuilt on an existing foundation.

Suggested Citation: U.S. Census Bureau and U.S. Department of Housing and Urban Development, Housing Starts: Total: New Privately Owned Housing Units Started [HOUST], retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/HOUST, June 13, 2020.

Take a look at privately owned starts

New Privately-Owned Houses Sold and For Sale

Suggested Citation: U.S. Census Bureau and U.S. Department of Housing and Urban Development, Median Sales Price of Houses Sold for the United States [MSPUS], retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/MSPUS, June 13, 2020.

Finally, take a look at starts times the median price

Durable Goods

Suggested Citation: U.S. Census Bureau, Manufacturers’ New Orders: Durable Goods [UMDMNO], retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/UMDMNO, April 26, 2021.

Durable goods, not seasonally adjusted, divided by GDP

Durable goods, seasonally adjusted, divided by GDP

Federal reserve board H.8: Assets and Liabilities of Commercial Banks in the United States

Page 4: Not Seasonally adjusted, billions of dollars

Commercial and industrial loans, all commercial banks - Line 10

Data taken from H.8 Assets and Liabilities of Commercial Banks in the United States. Take a look at SA and NSA data series as weekly and month updates. It should all be similar at this scale.

Suggested Citation: Board of Governors of the Federal Reserve System (US), Commercial and Industrial Loans, All Commercial Banks [BUSLOANS], retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/BUSLOANS, July 11, 2019.

Taking a look at the difference in SA and NSA series. Seasonal adjustments do vary, but do not seem to be related to recessions.

The raw series is just too steep for any kind of machine learnine. This needs to be converted to log scale.

That’s a little better, let’s see what the smoothed derivative looks like.

That is odd…looks like this doesn’t cross zero unless we are getting close to, or into, a recession. The year over year tells about the same story. Might be a good indication of the end of a recession.

Consumer loans, all commercial banks - Line 20

Suggested Citation: Board of Governors of the Federal Reserve System (US), Consumer Loans, All Commercial Banks [CONSUMERNSA], retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/CONSUMERNSA, July 11, 2019.

That spike in consumer loans is due to

“April 9, 2010 (Last revised September 23, 2011): As of the week ending March 31, 2010, domestically chartered banks and foreign-related institutions had consolidated onto their balance sheets the following assets and liabilities of off-balance-sheet vehicles, owing to the adoption of FASB’s Financial Accounting Statements No. 166 (FAS 166),”Accounting for Transfers of Financial Assets," and No. 167 (FAS 167), “Amendments to FASB Interpretation No. 46(R).”

This included a consumer loans, credit cards and other revolving plans change of $321.9B. That was a lot of off-balance-sheet bank assets.

Deposits, All Commercial Banks, all commercial banks - Line 34

Data taken from H.8 Assets and Liabilities of Commercial Banks in the United States. Take a look at SA and NSA data series as weekly and month updates. It should all be similar at this scale.

Suggested Citation: Board of Governors of the Federal Reserve System (US), Deposits, All Commercial Banks [DPSACBW027SBOG], retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/DPSACBW027SBOG, May 14, 2020.

Federal reserve board Z.1: Financial Accounts of the United States

From the FRED website (https://fred.stlouisfed.org/release?rid=52):

"The Financial Accounts (formerly known as the Flow of Funds accounts) are a set of financial accounts used to track the sources and uses of funds by sector. They are a component of a system of macroeconomic accounts including the National Income and Product accounts (NIPA) and balance of payments accounts, all of which serve as a comprehensive set of information on the economy’s performance.(1) Some important inferences that can be drawn from the Financial accounts are the financial strength of a given sector, new economic trends, changes in the composition of wealth, and development of new financial instruments over time.(1)

Sectors are compiled into three categories: households, nonfinancial businesses, and banks. The sources of funds for a sector are its internal funds (savings from income after consumption) and external funds (loans from banks and other financial intermediaries). (1) Funds for a given sector are used for its investments in physical and financial assets. Dividing sources and uses of funds into two categories helps the staff of the Federal Reserve System pay particular attention to external sources of funds and financial uses of funds.(2) One example is whether households are borrowing more from banks—or in other words, whether household debt is rising. Another example might be whether banks are using more of their funds to provide loans to consumers. Transactions within a sector are not shown in the accounts; however, transactions between sectors are.(2) Monitoring the external flows of funds provides insights into a sector’s health and the performance of the economy as a whole.

Data for the Financial accounts are compiled from a large number of reports and publications, including regulatory reports such as those submitted by banks, tax filings, and surveys conducted by the Federal Reserve System.(2) The Financial accounts are published quarterly as a set of tables in the Federal Reserve’s Z.1 statistical release.

  1. Teplin, Albert M. “The U.S. Flow of Funds Accounts and Their Uses.” Federal Reserve Bulletin, July 2001; http://www.federalreserve.gov/pubs/bulletin/2001/0701lead.pdf.
  2. Board of Governors of the Federal Reserve System. “Guide to the Flow of Funds Accounts.” 2000, http://www.federalreserve.gov/apps/fof/."

L.102 Nonfinancial Business

FL102051003.Q: Nonfinancial corporate business; security repurchase agreements; asset

Asset level of nonfinancial business security repo agreements. federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL102051003&t=

L.214 Loans

FL894123005.Q: All sectors; total loans; liability

Sum of domestic financial sectors, all sectors, total mortgages, and households/non-profits. federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL894123005&t=L.107&bc=L.107:FL793068005&suf=Q

FL793068005.Q: Domestic financial sectors; depository institution loans n.e.c.; asset

Sum of Monetary authority; depository institution loans n.e.c.; asset and Private depository institutions; depository institution loans n.e.c.; asset. federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL793068005&t=L.214&suf=Q

FL893169005.Q: All sectors; other loans and advances; liability

Sum of finance, government, and chartered institutions asset levels. https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL893169005&t=L.214&suf=Q

FL893065105.Q: All sectors; home mortgages; asset

https://www.federalreserve.gov/apps/fof/DisplayTable.aspx?t=L.214

FL893065405.Q: All sectors; multifamily residential mortgages; asset

https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL893065405&t=L.214&suf=Q

FL893065505.Q: All sectors; commercial mortgages; asset

https://www.federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL893065505&t=L.214&suf=Q

FL153166000.Q: Households and nonprofit organizations; consumer credit; liability

federalreserve.gov/apps/fof/SeriesAnalyzer.aspx?s=FL153166000&t=L.214&suf=Q

B.101 Balance Sheet of Households and Nonprofit Organizations

FL152000005.Q: Households and nonprofit organizations; total assets, Level

string.source ID: FL152000005.Q.

FL152090006.Q: Household Net Worth as Percentage of Disposable Personal Income

string.source ID: FL152090006.Q. Household networth tends to fall as a recession start.

Productivity Yield Curve

GDP versus productivity

Manufacturing output and employees

Not sure if these relates to a recession, but fascinating to see how output and employees change with time.

datay <- "OUTMS"
ylim <- c(60, 120)
dtStart = as.Date('1987-01-01')
plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart)

datay <- "MANEMP"
ylim <- c(10000, 20000)
dtStart = as.Date('1948-01-01')
plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart)

datay <- "PRS30006163"
ylim <- c(40, 120)
dtStart = as.Date('1986-01-01')
plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart)

Shipping volumes might be helpful in determining state of the economy.

datay <- "FRGSHPUSM649NCIS"
ylim <- c(0.8, 1.4)
dtStart = as.Date('1999-01-01')
plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart)

datay <- "FRGSHPUSM649NCIS_YoY"
ylim <- c(-30, 30)
dtStart = as.Date('1999-01-01')
plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart)

Freight, loosely, moves inversely to the trade deficit.

datay <- "BOPGTB_YoY"
ylim <- c(-30, 30)
dtStart = as.Date('1999-01-01')
plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart)

World bank air transportation. Only updated annually so less usefull, but interesting reference to above.

datay <- "WWDIWLDISAIRGOODMTK1"
ylim <- c(0, 250000)
dtStart = as.Date('1999-01-01')
plotSingleQuick(dfRecession, df.data, datay, ylim, dtStart)

Gross private domestic investment

Spending most certainly tips down prior to a recession. The gross private domestic investment data series, plotted in log format below, show how private investment pulls back prior to recessions.

The change in direction is a little easier to see if the derivative is plotted, first YoY then the smoothed derivative

Velocity

Productivity

Date range to match census data

PMI

Industrial Production

This is a look at manufacturing industrial production. The yoY change should be a leading indicator of unemployment.

Housing

Take a look at housing starts. These can drop as rates rise.

Case-schiller price index

Population data

Many of the economic series can be better understood if normalized by population. Basic population and worker data from FRED.

Population to GDP

Look at GDP divided by CPI per person. It flattens and even dips a little prior to a recession. Might be worth looking at the derivative of this series.

That is worth a closer look

datay1 <- "GDPBYCPIAUCSLBYPOPTHM_SmoothDer"
ylim1 <- c(-5, 5)

datay2 <- "RecInit_Smooth"
ylim2 <- c(0, 1)

dtStart <- as.Date("1jan1960","%d%b%Y")

w <- 30
corrName <- calcRollingCorr(dfRecession, df.data, df.symbols, datay1, ylim1, datay2, ylim2, w, dtStart)

Correlation Study

Detailed correlations are explored above. Before concluding, let’s take a look at some overall correlation values to see if anything pops out.

Commodities

As mentioned above, copper, year over year, has some correlation with the recession initiation. It could be useful.

GDP Series

GDP, normalized first by CPI and then by population, looks like it migh correlate inversely with the recession indicators

Financials

Let’s see where we are so far. The correlation plot confirms some of the speculation above. The S&P 500 (GSPC.Open) is well correlated with industrial production (INDPRO), business loans (BUSLOANS), total loans (TOTLNNSA) , and nonfinancial corporate business debt (NCBDBIQ027S).

In this case, I want and indicator that rises prior to a recession. It looks like the unemployment rate (UNRATE), real personal income (W875RX1), and the yield curve (DGS10TO1) are all inversely correlated with the recession initiation indicator.

I thought the modified recession initiation would be a harder match, but there are quite a few correlated variables. Lets take a look at some of those in more detail

Complete list of symbols

Since it is tedious to do this one at a time, all the symbols were entered into a data frame, loaded, and aggregated together in a single xts object.

This is the complete list of symbol names and sources used in the project.

string.symbol string.source Description Label Series Start date.series.start date.series.end Max030 Max180
CPIAUCSL FRED Consumer Price Index for All Urban Consumers: All Items Index 1982-1984=100 -1.00 1947-01-01 2021-05-01 TRUE TRUE
USREC FRED NBER based Recession Indicators +1 or 0 -1.00 1854-12-01 2021-05-01 TRUE TRUE
UNRATE FRED Civilian Unemployment Rate U-3 Percent -1.00 1948-01-01 2021-05-01 TRUE FALSE
PCEPI FRED Personal Consumption Expenditures: Chain-type Price Index Index 2012=100 -1.00 1959-01-01 2021-04-01 TRUE TRUE
CCSA FRED Continued Claims (Insured Unemployment) Number -1.00 1967-01-07 2021-05-29 FALSE FALSE
CCNSA FRED Continued Claims (Insured Unemployment, NSA) Number -1.00 1967-01-07 2021-05-29 FALSE FALSE
NPPTTL FRED Total Nonfarm Private Payroll Employment (ADP) Thousands -1.00 2002-04-01 2021-05-01 TRUE TRUE
U6RATE FRED Total unemployed + margin + part-time U-6 Percent -1.00 1994-01-01 2021-05-01 TRUE FALSE
PAYNSA FRED All Employees: Total Nonfarm Payrolls (NSA) Thousands of Persons -1.00 1939-01-01 2021-05-01 TRUE TRUE
TABSHNO FRED Households and nonprofit organizations; total assets, Level Billions of Dollars -1.00 1945-10-01 2021-01-01 TRUE TRUE
HNONWPDPI FRED Household Net Worth, percent Dispsable Income Percent -1.00 1946-10-01 2021-01-01 TRUE FALSE
INDPRO FRED Industrial Production Index Index 2012=100 -1.00 1919-01-01 2021-04-01 TRUE FALSE
RRSFS FRED Real Retail and Food Services Sales Millions of Dollars -1.00 1992-01-01 2021-04-01 TRUE FALSE
RSALES FRED Real Retail Sales (DISCONTINUED) Millions of Dollars -1.00 1947-01-01 2001-04-01 TRUE TRUE
W875RX1 FRED Real personal income excluding current transfer receipts Billions of Chained 2009 Dollars -1.00 1959-01-01 2021-04-01 TRUE TRUE
RPI FRED Real personal income Billions of Chained 2009 Dollars -1.00 1959-01-01 2021-04-01 TRUE FALSE
PCOPPUSDM FRED Global price of Copper U.S. Dollars per Metric Ton -1.00 1990-01-01 2021-05-01 TRUE TRUE
NOBL yahoo ProShares S&P 500 Dividend Aristocrats (NOBL) BATS Real Time Price 0.35 2013-10-10 2021-06-11 NA NA
SCHD yahoo Schwab U.S. Dividend Equity ETF Dollars 0.06 2011-10-20 2021-06-11 NA NA
PFF yahoo iShares Preferred and Income Securities ETF BATS Real Time Price 0.35 2007-03-30 2021-06-11 NA NA
HPI yahoo John Hancock Preferred Income Fund BATS Real Time Price 0.35 2003-07-15 2021-06-11 NA NA
GSFTX yahoo Columbia Dividend Income Fund Institutional Class Dollars 0.71 1998-03-04 2021-06-11 NA NA
LFMIX yahoo LoCorr Macro Strategies Fund Class I Dollars 2.00 2011-04-06 2021-06-11 NA NA
LFMCX yahoo LoCorr Macro Strategies Fund Class C Dollars 3.00 2011-04-06 2021-06-11 NA NA
LFMAX yahoo LoCorr Macro Strategies Fund Class A Dollars 2.25 2011-04-06 2021-06-11 NA NA
LCSIX yahoo LoCorr Long/Short Commodity Strategies Fund Class I Dollars 2.40 2012-01-17 2021-06-11 NA NA
BSV yahoo Vanguard Short-Term Bond Index Fund ETF Shares Dollars 0.05 2007-04-10 2021-06-11 NA NA
VBIRX yahoo Vanguard Short-Term Bond Index Fund Admiral Shares Dollars 0.07 2001-11-12 2021-06-11 NA NA
BIV yahoo Vanguard Intermediate-term Bond Index Fund ETF Shares Dollars 0.05 2007-04-10 2021-06-11 NA NA
VFSUX yahoo Vanguard Short-Term Investment-Grade Fund Admiral Shares Dollars 0.10 2001-02-12 2021-06-11 NA NA
LTUIX yahoo Thornburg Limited Term U.S. Government Fund Class I Dollars 0.62 1996-07-05 2021-06-11 NA NA
PTTPX yahoo PIMCO Total Return Fund Class I-2 Dollars 0.81 2008-04-30 2021-06-11 NA NA
NERYX yahoo Loomis Sayles Core Plus Bond Fund Class Y Dollars 0.48 1994-12-30 2021-06-11 NA NA
STIGX yahoo Virtus Seix Core Bond Fund Class I Dollars 0.50 1992-06-08 2021-06-11 NA NA
HLGAX yahoo JPMorgan Government Bond Fund Class I Dollars 0.48 1993-02-08 2021-06-11 NA NA
FTRGX yahoo Federated Hermes Total Return Government Bond Fund Institutional Shares Dollars 0.33 2014-06-18 2021-06-11 NA NA
THIIX yahoo Thornburg Limited Term Income Fund Class I Dollars 0.49 1996-07-05 2021-06-11 NA NA
PTTRX yahoo PIMCO Total Return Fund Institutional Class Dollars 0.71 1987-05-11 2021-06-11 NA NA
BFIGX yahoo American Funds Inflation Linked Bond Fund Class F-2 Dollars 0.43 2015-01-23 2021-06-11 NA NA
VTWO yahoo Vanguard Russell 2000 Index Fund ETF Shares Dollars 0.10 2010-09-22 2021-06-11 NA NA
EIFAX yahoo Eaton Vance Floating-Rate Advantage Fund Class I Dollars 1.62 2008-03-17 2021-06-11 NA NA
ASDAX yahoo AAM/HIMCO Short Duration Fund Class A Dollars 0.84 2014-07-01 2021-06-11 NA NA
TRBUX yahoo T. Rowe Price Ultra Short-Term Bond Fund Dollars 0.32 2013-10-03 2021-06-11 NA NA
PRWCX yahoo T. Rowe Price Capital Appreciation Fund Dollars 0.70 1986-06-30 2021-06-11 NA NA
ADOZX yahoo Alger Dynamic Opportunities Fund Class Z Dollars 1.75 2010-12-29 2021-06-11 NA NA
MERFX yahoo The Merger Fund Investor Class Dollars 1.99 1989-01-31 2021-06-11 NA NA
CMNIX yahoo Calamos Market Neutral Income Fund Institutional Class Dollars 1.01 2000-05-10 2021-06-11 NA NA
CIHEX yahoo Calamos Hedged Equity Fund Class I Dollars 0.92 2015-01-02 2021-06-11 NA NA
IMPCH FRED U.S. Imports of Goods by Customs Basis from China (Monthly, NSA) Billions of U.S. Dollars -1.00 1985-01-01 2021-04-01 TRUE FALSE
EXPCH FRED U.S. Exports of Goods by F.A.S. Basis to China, Mainland (Monthly, NSA) Billions of U.S. Dollars -1.00 1985-01-01 2021-04-01 TRUE FALSE
IMPMX FRED U.S. Imports of Goods by Customs Basis from Mexico (Monthly, NSA) Billions of U.S. Dollars -1.00 1985-01-01 2021-04-01 TRUE FALSE
EXPMX FRED U.S. Exports of Goods by F.A.S. Basis to Mexico (Monthly, NSA) Billions of U.S. Dollars -1.00 1985-01-01 2021-04-01 TRUE FALSE
HSN1FNSA FRED New One Family Houses Sold: United States (Monthly, NSA) Thousands of Units -1.00 1963-01-01 2021-04-01 TRUE FALSE
HNFSUSNSA FRED New One Family Houses for Sale in the United States (Monthly, NSA) Thousands of Units -1.00 1963-01-01 2021-04-01 TRUE TRUE
BUSLOANS FRED Commercial and Industrial Loans, All Commercial Banks (Monthly, SA) Billions of U.S. Dollars -1.00 1947-01-01 2021-05-01 TRUE FALSE
TOTCI FRED Commercial and Industrial Loans, All Commercial Banks (Weekly, SA) Billions of U.S. Dollars -1.00 1973-01-03 2021-06-02 FALSE FALSE
BUSLOANSNSA FRED Commercial and Industrial Loans, All Commercial Banks (Monthly, NSA) Billions of U.S. Dollars -1.00 1947-01-01 2021-05-01 TRUE FALSE
REALLNNSA FRED Real Estate Loans, All Commercial Banks (Monthly, NSA) Billions of U.S. Dollars -1.00 1947-01-01 2021-05-01 TRUE FALSE
REALLN FRED Real Estate Loans, All Commercial Banks (Monthly, SA) Billions of U.S. Dollars -1.00 1947-01-01 2021-05-01 TRUE FALSE
RELACBW027NBOG FRED Real Estate Loans, All Commercial Banks (Weekly, NSA) Billions of U.S. Dollars -1.00 1973-01-03 2021-06-02 FALSE FALSE
RELACBW027SBOG FRED Real Estate Loans, All Commercial Banks (Weekly, SA) Billions of U.S. Dollars -1.00 1973-01-03 2021-06-02 FALSE FALSE
RREACBM027NBOG FRED Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, NSA) Billions of U.S. Dollars -1.00 2004-06-01 2021-05-01 TRUE FALSE
RREACBM027SBOG FRED Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, SA) Billions of U.S. Dollars -1.00 2004-06-01 2021-05-01 TRUE FALSE
RREACBW027SBOG FRED Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, SA) Billions of U.S. Dollars -1.00 2004-06-02 2021-06-02 FALSE FALSE
RREACBW027NBOG FRED Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, NSA) Billions of U.S. Dollars -1.00 2004-06-02 2021-06-02 FALSE FALSE
MORTGAGE30US FRED 30-Year Fixed Rate Mortgage Average in the United States Percent -1.00 1971-04-02 2021-06-10 FALSE FALSE
CONSUMERNSA FRED Consumer Loans, All Commercial Banks Billions of U.S. Dollars -1.00 1947-01-01 2021-05-01 TRUE FALSE
TOTLLNSA FRED Loans and Leases in Bank Credit, All Commercial Banks Billions of U.S. Dollars -1.00 1973-01-03 2021-06-02 TRUE FALSE
DPSACBW027SBOG FRED Deposits, All Commercial Banks Billions of U.S. Dollars -1.00 1973-01-03 2021-06-02 FALSE FALSE
DRCLACBS FRED Delinquency Rate on Consumer Loans, All Commercial Banks, SA Percent -1.00 1987-01-01 2021-01-01 TRUE FALSE
TOTCINSA FRED Commercial and Industrial Loans, All Commercial Banks (Weekly, NSA) Billions of U.S. Dollars -1.00 1973-01-03 2021-06-02 FALSE FALSE
SRPSABSNNCB FRED Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) Billions of U.S. Dollars -1.00 1945-10-01 2021-01-01 TRUE FALSE
ASTLL FRED All sectors; total loans; liability, Level (NSA) Billions of U.S. Dollars -1.00 1945-10-01 2021-01-01 TRUE TRUE
FBDILNECA FRED Domestic financial sectors; depository institution loans n.e.c.; asset, Level (NSA) Billions of U.S. Dollars -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASOLAL FRED All sectors; other loans and advances; liability, Level (NSA) Millions of U.S. Dollars -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASTMA FRED All sectors; total mortgages; asset, Level (NSA) Billions of U.S. Dollars -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASHMA FRED All sectors; home mortgages; asset, Level (NSA) Billions of U.S. Dollars -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASMRMA FRED All sectors; multifamily residential mortgages; asset, Level (NSA) Billions of U.S. Dollars -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASCMA FRED All sectors; commercial mortgages; asset, Level (NSA) Billions of U.S. Dollars -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASFMA FRED All sectors; farm mortgages; asset, Level (NSA) Billions of U.S. Dollars -1.00 1945-10-01 2021-01-01 TRUE TRUE
CCLBSHNO FRED Households and nonprofit organizations; consumer credit; liability, Level (NSA) Billions of U.S. Dollars -1.00 1945-10-01 2021-01-01 TRUE FALSE
FBDSILQ027S FRED Domestic financial sectors debt securities; liability, Level (NSA) Millions of U.S. Dollars -1.00 1945-10-01 2021-01-01 TRUE TRUE
FBLL FRED Domestic financial sectors loans; liability, Level (NSA) Millions of U.S. Dollars -1.00 1945-10-01 2021-01-01 TRUE FALSE
NCBDBIQ027S FRED Nonfinancial corporate business; debt securities; liability, Level Millions of Dollars -1.00 1945-10-01 2021-01-01 TRUE TRUE
DGS10 FRED 10-Year Treasury Constant Maturity Rate Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
TNX yahoo CBOE Interest Rate 10 Year T No Percent -1.00 1962-01-02 2021-06-11 NA NA
CLF yahoo Crude Oil Futures Dollars/bbl -1.00 2000-08-23 2021-06-11 NA NA
DGS30 FRED 10-Year Treasury Constant Maturity Rate Percent -1.00 1977-02-15 2021-06-10 FALSE FALSE
DGS1 FRED 1-Year Treasury Constant Maturity Rate Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS2 FRED 2-Year Treasury Constant Maturity Rate Percent -1.00 1976-06-01 2021-06-10 FALSE FALSE
TB3MS FRED 3-Month Treasury Bill: Secondary Market Rate (Monthly) Percent -1.00 1934-01-01 2021-05-01 TRUE FALSE
DTB3 FRED 3-Month Treasury Bill: Secondary Market Rate (Daily) Percent -1.00 1954-01-04 2021-06-10 TRUE FALSE
IRX yahoo CBOE 13 WEEK TREASURY BILL Percent -1.00 1960-01-04 2021-06-11 NA NA
DCOILWTICO FRED Crude Oil Prices: West Texas Intermediate (WTI) Cushing, Oklahoma Dollars per Barrel (Not Adjusted) -1.00 1986-01-02 2021-06-07 FALSE FALSE
DCOILBRENTEU FRED Crude Oil Prices: Brent - Europe Dollars per Barrel (Not Adjusted) -1.00 1987-05-20 2021-06-07 FALSE FALSE
NEWORDER FRED Manufacturers’ New Orders: Nondefense Capital Goods Excluding Aircraft Millions of Dollars -1.00 1992-02-01 2021-04-01 TRUE TRUE
ALTSALES FRED Light Weight Vehicle Sales: Autos and Light Trucks Millions of Units -1.00 1976-01-01 2021-05-01 TRUE FALSE
ICSA FRED Initial Jobless Claims Number -1.00 1967-01-07 2021-06-05 FALSE FALSE
GSPC yahoo S&P 500 Dollars -1.00 1927-12-30 2021-06-11 NA NA
RLG yahoo Russell 1000 Growth ETF Dollars -1.00 2002-09-30 2021-06-11 NA NA
DJI yahoo Dow Jones Industrial Average Dollars -1.00 1992-01-02 2021-06-11 NA NA
STOXX50E yahoo Euro Stoxx 50 Euros -1.00 2007-03-30 2021-06-11 NA NA
EFA yahoo iShares MSCI EAFE ETF Dollars -1.00 2001-08-27 2021-06-11 NA NA
GDP FRED Gross Domestic Product Billions of Dollars -1.00 1947-01-01 2021-01-01 TRUE TRUE
FNDEFX FRED Federal Government: Nondefense Consumption Expenditures and Gross Investment (SA, Annual Rate) Billions of Dollars -1.00 1947-01-01 2021-01-01 TRUE TRUE
FDEFX FRED Federal Government: National Defense Consumption Expenditures and Gross Investment (SA, Annual Rate) Billions of Dollars -1.00 1947-01-01 2021-01-01 TRUE TRUE
GDPNOW FRED Fed Atlanta GDPNow Percent Change at Annual Rate (SA) -1.00 2011-07-01 2021-04-01 TRUE TRUE
GDPC1 FRED Real Gross Domestic Product Billions of Dollars -1.00 1947-01-01 2021-01-01 TRUE TRUE
GDPDEF FRED Gross Domestic Product: Implicit Price Deflator Index 2012=100 -1.00 1947-01-01 2021-01-01 TRUE TRUE
VIG yahoo Vanguard Dividend Appreciation ETF Dollars -1.00 2006-05-02 2021-06-11 NA NA
WLRRAL FRED Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Billions of U.S. Dollars -1.00 2002-12-18 2021-06-09 TRUE TRUE
FEDFUNDS FRED Effective Federal Funds Rate Percent -1.00 1954-07-01 2021-05-01 TRUE FALSE
GPDI FRED Gross Private Domestic Investment Billions of Dollars -1.00 1947-01-01 2021-01-01 TRUE FALSE
W790RC1Q027SBEA FRED Net domestic investment: Private: Domestic busines Billions of Dollars -1.00 1960-01-01 2021-01-01 TRUE FALSE
MZMV FRED Velocity of MZM Money Stock Ratio -1.00 1959-01-01 2020-10-01 TRUE TRUE
M1 FRED M1 Money Stock Billions of Dollars -1.00 1975-01-06 2021-02-01 TRUE FALSE
M2 FRED M2 Money Stock Billions of Dollars -1.00 1980-11-03 2021-02-01 TRUE FALSE
OPHNFB FRED Nonfarm Business Sector: Real Output Per Hour of All Persons Index 2009 = 100 -1.00 1947-01-01 2021-01-01 TRUE TRUE
IPMAN FRED Industrial Production: Manufacturing (NAICS) Index 2012 = 100 -1.00 1972-01-01 2021-04-01 TRUE FALSE
IWD yahoo iShares Russell 1000 Value ETF Dollars -1.00 2000-05-26 2021-06-11 NA NA
GS5 FRED 5-Year Treasury Constant Maturity Rate Percent -1.00 1953-04-01 2021-05-01 TRUE FALSE
PSAVERT FRED Personal Saving Rate Percent -1.00 1959-01-01 2021-04-01 TRUE FALSE
VIXCLS FRED CBOE Volatility Index Index -1.00 1990-01-02 2021-06-10 FALSE FALSE
VXX yahoo iPath Series B S&P 500 VIX Short-Term Futures ETN Index -1.00 2018-01-25 2021-06-11 NA NA
HOUST1F FRED Privately Owned Housing Starts: 1-Unit Structures Thousands of units -1.00 1959-01-01 2021-04-01 TRUE FALSE
GFDEBTN FRED Federal Debt: Total Public Debt Millions of Dollars -1.00 1966-01-01 2021-01-01 TRUE TRUE
HOUST FRED Housing Starts: Total: New Privately Owned Housing Units Started Billions of Dollars -1.00 1959-01-01 2021-04-01 TRUE FALSE
MSPUS FRED Median Sales Price of Houses Sold for the United States Dollars -1.00 1963-01-01 2021-01-01 TRUE FALSE
UMDMNO FRED Manufacturers’ New Orders: Durable Goods (NSA) Dollars -1.00 1992-02-01 2021-04-01 TRUE FALSE
DGORDER FRED Manufacturers’ New Orders: Durable Goods (SA) Dollars -1.00 1992-02-01 2021-04-01 TRUE FALSE
CSUSHPINSA FRED S&P/Case-Shiller U.S. National Home Price Index (NSA) Index Jan 2000=100 -1.00 1987-01-01 2021-03-01 TRUE TRUE
GFDEGDQ188S FRED Federal Debt: Total Public Debt as Percent of Gross Domestic Product Percent of GDP -1.00 1966-01-01 2021-01-01 TRUE FALSE
FYFSD FRED Federal Surplus or Deficit Millions of Dollars -1.00 1901-06-30 2020-09-30 TRUE TRUE
FYFSGDA188S FRED Federal Surplus or Deficit [-] as Percent of Gross Domestic Product Percent of GDP -1.00 1929-01-01 2020-01-01 TRUE TRUE
GOLDAMGBD228NLBM FRED Gold Fixing Price 10:30 A.M. (London time) in London Bullion Market USD/Troy Ounce -1.00 1968-04-01 2021-06-11 FALSE FALSE
GDX yahoo VanEck Vectors Gold Miners ETF Dollars 0.53 2006-05-22 2021-06-11 NA NA
XLE yahoo Energy Select Sector SPDR Fund Dollars 0.13 1998-12-22 2021-06-11 NA NA
GSG yahoo iShares S&P GSCI Commodity-Indexed Trust Dollars 0.00 2006-07-21 2021-06-11 NA NA
WALCL FRED All Federal Reserve Banks: Total Assets Billions of Dollars -1.00 2002-12-18 2021-06-09 TRUE TRUE
OUTMS FRED Manufacturing Sector: Real Output Index 2009=100 -1.00 1987-01-01 2021-01-01 TRUE TRUE
MANEMP FRED All Employees: Manufacturing Thousands of Persons -1.00 1939-01-01 2021-05-01 TRUE FALSE
PRS30006163 FRED Manufacturing Sector: Real Output Per Person Index 2009=100 -1.00 1987-01-01 2021-01-01 TRUE TRUE
BAMLC0A3CA FRED ICE BofAML US Corporate A Option-Adjusted Spread Percent -1.00 1996-12-31 2021-06-10 FALSE FALSE
AAA FRED Moody’s Seasoned Aaa Corporate Bond Yield Percent -1.00 1919-01-01 2021-05-01 TRUE FALSE
SOFR FRED Secured Overnight Financing Rate Percent -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFRVOL FRED Secured Overnight Financing Volume Billions of U.S. Dollars -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR99 FRED Secured Overnight Financing Rate: 99th Percentile Percent -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR75 FRED Secured Overnight Financing Rate: 75th Percentile Percent -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR25 FRED Secured Overnight Financing Rate: 25th Percentile Percent -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR1 FRED Secured Overnight Financing Rate: 1st Percentile Percent -1.00 2018-04-03 2021-06-10 TRUE FALSE
OBFR FRED Overnight Bank Funding Rate Percent -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR99 FRED Overnight Bank Funding Rate: 99th Percentile Percent -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR75 FRED Overnight Bank Funding Rate: 75th Percentile Percent -1.00 2016-03-01 2021-06-10 TRUE FALSE
OBFR25 FRED Overnight Bank Funding Rate: 25th Percentile Percent -1.00 2016-03-01 2021-06-10 TRUE FALSE
OBFR1 FRED Overnight Bank Funding Rate: 1st Percentile Percent -1.00 2016-03-01 2021-06-10 FALSE FALSE
RPONTSYD FRED Overnight Repurchase Agreements: Treasury Securities Purchased by the Federal Reserve in the Temporary Open Market Operations Billions of US Dollars -1.00 2000-01-03 2021-06-11 FALSE FALSE
IOER FRED Interest Rate on Excess Reserves Percent -1.00 2008-10-09 2021-06-14 TRUE TRUE
WRESBAL FRED Reserve Balances with Federal Reserve Banks Billions of Dollars -1.00 1984-01-04 2021-06-09 FALSE FALSE
EXCSRESNW FRED Excess Reserves of Depository Institutions Billions of Dollars -1.00 1984-02-08 2020-09-09 TRUE TRUE
ECBASSETS FRED Central Bank Assets for Euro Area (11-19 Countries) Billions of Euros -1.00 1998-12-01 2020-01-01 TRUE TRUE
EUNNGDP FRED Gross Domestic Product (Euro/ECU series) for Euro Area (19 Countries) Billions of Euros -1.00 1995-01-01 2021-01-01 TRUE TRUE
CEU0600000007 FRED Average Weekly Hours of Production and Nonsupervisory Employees: Goods-Producing Hours -1.00 1947-01-01 2021-05-01 TRUE TRUE
USD1MTD156N FRED 1-Month London Interbank Offered Rate (LIBOR), based on U.S. Dollar Percent -1.00 1986-01-02 2021-06-04 FALSE FALSE
CURRENCY FRED Currency Component of M1 (Seasonally Adjusted) Billions of Dollars -1.00 1975-01-06 2021-02-01 TRUE TRUE
WCURRNS FRED Currency Component of M1 Billions of Dollars -1.00 1975-01-06 2021-05-03 TRUE TRUE
BOGMBASE FRED Monetary Base; Total Billions of Dollars -1.00 1959-01-01 2021-04-01 TRUE TRUE
PRS88003193 FRED Nonfinancial Corporations Sector: Unit Profits Index 2012 = 100 -1.00 1947-01-01 2021-01-01 TRUE FALSE
PPIACO FRED Producer Price Index for All Commodities Index 1982 = 100 -1.00 1913-01-01 2021-04-01 TRUE TRUE
PCUOMFGOMFG FRED Producer Price Index by Industry: Total Manufacturing Industries Index 1982 = 100 -1.00 1984-12-01 2021-04-01 TRUE TRUE
POPTHM FRED Population (U.S.) Thousands -1.00 1959-01-01 2021-04-01 TRUE TRUE
POPTHM FRED Population (U.S.) Thousands -1.00 1959-01-01 2021-04-01 TRUE TRUE
CLF16OV FRED Civilian Labor Force Level, SA Thousands -1.00 1948-01-01 2021-05-01 TRUE FALSE
LNU01000000 FRED Civilian Labor Force Level, NSA Thousands -1.00 1948-01-01 2021-05-01 TRUE TRUE
LNU03000000 FRED Unemployment Level (NSA) Thousands -1.00 1948-01-01 2021-05-01 TRUE FALSE
UNEMPLOY FRED Unemployment Level, seasonally adjusted Thousands -1.00 1948-01-01 2021-05-01 TRUE FALSE
RSAFS FRED Advance Retail Sales: Retail and Food Services Thousands -1.00 1992-01-01 2021-04-01 TRUE TRUE
FRGSHPUSM649NCIS FRED Cass Freight Index: Shipments Index Jan 1990 = 1 -1.00 1990-01-01 2021-05-01 TRUE TRUE
BOPGTB FRED Trade Balance: Goods, Balance of Payments Basis (SA) Millions of dollars -1.00 1992-01-01 2021-04-01 TRUE FALSE
TERMCBPER24NS FRED Finance Rate on Personal Loans at Commercial Banks, 24 Month Loan Percent -1.00 1972-02-01 2021-02-01 TRUE FALSE
A065RC1A027NBEA FRED Personal income (NSA) Billions of Dollars -1.00 1929-01-01 2020-01-01 TRUE TRUE
PI FRED Personal income (SA) Billions of Dollars -1.00 1959-01-01 2021-04-01 TRUE FALSE
PCE FRED Personal Consumption Expenditures (SA) Billions of Dollars -1.00 1959-01-01 2021-04-01 TRUE TRUE
A053RC1Q027SBEA FRED National income: Corporate profits before tax (without IVA and CCAdj) Billions of dollars -1.00 1947-01-01 2021-01-01 TRUE TRUE
CPROFIT FRED Corporate Profits with Inventory Valuation Adjustment (IVA) and Capital Consumption Adjustment (CCAdj) Billions of dollars -1.00 1947-01-01 2021-01-01 TRUE FALSE
SPY yahoo SPDR S&P 500 ETF Dollars -1.00 1993-01-29 2021-06-11 NA NA
MDY yahoo SPDR S&P MidCap 400 ETF Dollars -1.00 1995-05-04 2021-06-11 NA NA
EES yahoo WisdomTree US SmallCap Earnings ETF Dollars 0.38 2007-02-23 2021-06-11 NA NA
IJR yahoo iShares Core S&P Small-Cap ETF Dollars 0.05 2000-05-26 2021-06-11 NA NA
VGSTX yahoo Vanguard STAR Inv Dollars 0.32 1985-03-29 2021-06-11 NA NA
VFINX yahoo Vanguard 500 Index Investor Dollars 0.14 1980-01-02 2021-06-11 NA NA
VOE yahoo Vanguard Mid-Cap Value ETF Dollars 0.07 2006-08-25 2021-06-11 NA NA
VOT yahoo Vanguard Mid-Cap Growth ETF Dollars 0.07 2006-08-25 2021-06-11 NA NA
TMFGX yahoo Motley Fool Great America Investor Dollars 1.16 2010-11-02 2021-06-11 NA NA
IWM yahoo iShares Russell 2000 Dollars 0.19 2000-05-26 2021-06-11 NA NA
ONEQ yahoo Fidelity NASDAQ Composite Index Tracking Stock Fund Dollars 0.21 2003-10-01 2021-06-11 NA NA
HAINX yahoo Harbor International Institutional Dollars 0.81 1987-12-29 2021-06-11 NA NA
VEU yahoo Vanguard FTSE All-Wld ex-US ETF Dollars 0.11 2007-03-08 2021-06-11 NA NA
BIL yahoo SPDR Blmbg Barclays 1-3 Mth T-Bill ETF Dollars 0.14 2007-05-30 2021-06-11 NA NA
IVOO yahoo Vanguard S&P Mid-Cap 400 ETF Dollars 0.15 2010-09-09 2021-06-11 NA NA
VO yahoo Vanguard Mid-Cap ETF Dollars 0.05 2004-01-30 2021-06-11 NA NA
CZA yahoo Invesco Zacks Mid-Cap ETF Dollars 0.15 2007-04-03 2021-06-11 NA NA
VYM yahoo Vanguard High Dividend Yield ETF Dollars 0.08 2006-11-16 2021-06-11 NA NA
ACWI yahoo iShares MSCI ACWI ETF Dollars 0.32 2008-03-28 2021-06-11 NA NA
SLY yahoo SPDR S&P 600 Small Cap Dollars -1.00 2005-11-15 2021-06-11 NA NA
QQQ yahoo Invesco QQQ Trust Dollars -1.00 1999-03-10 2021-06-11 NA NA
HYMB yahoo SPDR Nuveen S&P High Yield Municipal Bond ETF Dollars -1.00 2011-04-14 2021-06-11 NA NA
GOLD yahoo Barrick Gold Corporation Dollars 0.00 1985-02-13 2021-06-11 NA NA
BKR yahoo Baker Hughes Company Dollars -1.00 1987-04-06 2021-06-11 NA NA
SLB yahoo Schlumberger Limited Dollars -1.00 1981-12-31 2021-06-11 NA NA
HAL yahoo Halliburton Company Dollars -1.00 1972-06-01 2021-06-11 NA NA
IP yahoo International Paper Company Dollars -1.00 1962-01-02 2021-06-11 NA NA
PKG yahoo Packaging Corporation of America Dollars -1.00 2000-01-28 2021-06-11 NA NA
UPS yahoo United Parcel Service, Inc.  Dollars -1.00 1999-11-10 2021-06-11 NA NA
FDX yahoo FedEx Corporation Dollars -1.00 1978-04-12 2021-06-11 NA NA
T yahoo AT&T Dollars -1.00 1983-11-21 2021-06-11 NA NA
VZ yahoo Verizon Dollars -1.00 1983-11-21 2021-06-11 NA NA
ISMMANPMI QUANDL Institute of Supply Managment PMI Composite Index Index -1.00 1948-01-01 2021-05-01 TRUE FALSE
MULTPLSP500PERATIOMONTH QUANDL S&P 500 TTM P/E Index -1.00 1910-01-01 2021-06-01 TRUE TRUE
MULTPLSP500SALESQUARTER QUANDL S&P 500 TTM Sales (Not Inflation Adjusted) Index -1.00 2000-12-31 2020-12-31 TRUE FALSE
MULTPLSP500DIVYIELDMONTH QUANDL S&P 500 Dividend Yield by Month Percentage -1.00 1910-01-31 2021-06-01 FALSE FALSE
MULTPLSP500DIVMONTH QUANDL S&P 500 Dividend by Month (Inflation Adjusted) 2018 Dollars -1.00 1871-01-31 2021-03-31 TRUE FALSE
CHRISCMEHG1 QUANDL Copper Futures, Continuous Contract #1 (HG1) (Front Month) Dollars/pound -1.00 1871-01-01 1900-01-01 FALSE FALSE
WWDIWLDISAIRGOODMTK1 QUANDL Air transport, freight million ton-km -1.00 1871-01-01 1900-01-01 TRUE TRUE
PETA103600001M EIA U.S. Total Gasoline Retail Sales by Refiners, Monthly Thousand Gallons per Day -1.00 1973-12-31 2018-12-31 TRUE TRUE
PETA123600001M EIA U.S. Regular Gasoline Retail Sales by Refiners, Monthly Thousand Gallons per Day -1.00 1973-12-31 2018-12-31 TRUE TRUE
PETA143B00001M EIA U.S. Midgrade Gasoline Retail Sales by Refiners, Monthly Thousand Gallons per Day -1.00 1973-12-31 2018-12-31 TRUE TRUE
PETA133B00001M EIA U.S. Premium Gasoline Bulk Sales (Volume) by Refiners, Monthly Thousand Gallons per Day -1.00 1973-12-31 2018-12-31 TRUE FALSE
TOTALOGNRPUSM EIA Crude Oil and Natural Gas Rotary Rigs in Operation, Total, Monthly Number of rigs -1.00 1973-12-31 2018-12-31 TRUE TRUE
TOTALPANRPUSM EIA Crude Oil Rotary Rigs in Operation, Monthly Number of rigs -1.00 1973-12-31 2018-12-31 TRUE TRUE
TOTALNGNRPUSM EIA Natural Gas Rotary Rigs in Operation, Monthly Number of rigs -1.00 1973-12-31 2018-12-31 TRUE TRUE
BKRTotal BKR Total Rig Count Number of rigs -1.00 1987-07-17 2020-08-28 TRUE TRUE
BKRGas BKR Gas Rig Count Number of rigs -1.00 2020-08-28 1987-07-17 TRUE TRUE
BKROil BKR Oil Rig Count Number of rigs -1.00 2020-08-28 1987-07-17 TRUE TRUE
FARMINCOME USDA Net Farm Income Billions of Dollars -1.00 2012-01-01 2019-01-01 TRUE TRUE
OPEARNINGSPERSHARE SILVERBLATT Operating Earnings per Share Dollars -1.00 2012-01-01 2019-01-01 TRUE TRUE
AREARNINGSPERSHARE SILVERBLATT As-Reported Earnings per Share Dollars -1.00 2012-01-01 2019-01-01 TRUE FALSE
CASHDIVIDENDSPERSHR SILVERBLATT Cash Dividends per Share Dollars -1.00 2012-01-01 2019-01-01 TRUE TRUE
SALESPERSHR SILVERBLATT Sales per Share Dollars -1.00 2012-01-01 2019-01-01 TRUE TRUE
BOOKVALPERSHR SILVERBLATT Book value per Share Dollars -1.00 2012-01-01 2019-01-01 TRUE TRUE
CAPEXPERSHR SILVERBLATT Cap ex per Share Dollars -1.00 2012-01-01 2019-01-01 TRUE TRUE
PRICE SILVERBLATT Price Dollars -1.00 2012-01-01 2019-01-01 TRUE TRUE
OPEARNINGSTTM SILVERBLATT TTM Operating Earnings Dollars -1.00 2012-01-01 2019-01-01 TRUE FALSE
AREARNINGSTTM SILVERBLATT TTM Reported Earnings Dollars -1.00 2012-01-01 2019-01-01 TRUE FALSE
FINRAMarginDebt FINRA Margin Debt Dollars -1.00 1959-01-31 2021-03-31 TRUE TRUE
FINRAFreeCreditMargin FINRA Free Credit Balances in Customers’ Securities Margin Accounts Dollars -1.00 1959-01-31 1900-01-01 TRUE FALSE
OCCEquityVolume OCC Equity Options Volume Millions of Options/Day -1.00 1973-12-31 2019-09-25 TRUE TRUE
OCCNonEquityVolume OCC Non-Equity Options Volume Millions of Options/Day -1.00 1973-12-31 2019-09-25 TRUE TRUE
RSALESAGG Calc Real Retail and Food Services Sales (RRSFS and RSALES) Millions of Dollars -1.00 1947-01-01 2021-04-01 TRUE FALSE
BUSLOANS.minus.BUSLOANSNSA Calc Business Loans (Montlhy) SA - NSA Percent -1.00 1947-01-01 2021-05-01 TRUE FALSE
BUSLOANS.minus.BUSLOANSNSA.by.GDP Calc Business Loans (Montlhy) SA - NSA divided by GDP Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
BUSLOANS.by.GDP Calc Business Loans Normalized by GDP Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
BUSLOANS.INTEREST Calc Business Loans (Monthly, SA) Adjusted Interest Burdens Billions of U.S. Dollars -1.00 1962-01-02 2021-06-10 FALSE FALSE
BUSLOANS.INTEREST.by.GDP Calc Business Loans (Monthly, SA) Adjusted Interest Burden Divided by GDP PERCENT -1.00 1947-01-01 2021-01-01 FALSE FALSE
BUSLOANSNSA.by.GDP Calc Business Loans Normalized by GDP Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
TOTCI.by.GDP Calc Business Loans (Weekly, SA) Normalized by GDP Percent -1.00 1973-01-03 2021-01-01 FALSE FALSE
TOTCINSA.by.GDP Calc Business Loans (Weekly, NSA) Normalized by GDP Percent -1.00 1973-01-03 2021-01-01 FALSE FALSE
TOTCINSA.INTEREST Calc Business Loans (Weekly, NSA) Adjusted Interest Burdens Billions of U.S. Dollars -1.00 1962-01-02 2021-06-10 FALSE FALSE
TOTCINSA.INTEREST.by.GDP Calc Business Loans (weekly, NSA) Adjusted Interest Burden Divided by GDP PERCENT -1.00 1947-01-01 2021-01-01 FALSE FALSE
W875RX1.by.GDP Calc Real Personal Income Normalized by GDP Percent -1.00 1959-01-01 2021-01-01 TRUE TRUE
A065RC1A027NBEA.by.GDP Calc Personal Income (NSA) Normalized by GDP Percent -1.00 1947-01-01 2020-01-01 TRUE FALSE
PI.by.GDP Calc Personal Income (SA) Normalized by GDP Percent -1.00 1959-01-01 2021-01-01 TRUE FALSE
A053RC1Q027SBEA.by.GDP Calc National income: Corporate profits before tax (without IVA and CCAdj) Normalized by GDP Percent -1.00 1947-01-01 2021-01-01 TRUE TRUE
CPROFIT.by.GDP Calc National income: Corporate profits before tax (with IVA and CCAdj) Normalized by GDP Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
CONSUMERNSA.by.GDP Calc Consumer Loans Not Seasonally Adjusted divided by GDP Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
RREACBM027NBOG.by.GDP Calc Residental Real Estate Loans (Monthly, NSA) divided by GDP Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
RREACBM027SBOG.by.GDP Calc Residental Real Estate Loans (Monthly, SA) divided by GDP Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
RREACBW027SBOG.by.GDP Calc Residental Real Estate Loans (Weekly, SA) divided by GDP Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBW027NBOG.by.GDP Calc Residental Real Estate Loans (Weekly, NSA) divided by GDP Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
UMDMNO.by.GDP Calc Durable Goods (Monthly, NSA) divided by GDP Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
DGORDER.by.GDP Calc Durable Goods (Monthly, NSA) divided by GDP Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASHMA.by.GDP Calc Home Mortgages (Quarterly, NSA) divided by GDP Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASHMA.INTEREST Calc Home Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens Billions of U.S. Dollars -1.00 1971-04-02 2021-06-10 FALSE FALSE
317491-948457.by.GDP Calc Home Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens Divided by GDP PERCENT -1.00 1947-01-01 2021-01-01 NA NA
CONSUMERNSA.INTEREST Calc Consumer Loans (Not Seasonally Adjusted) Interest Burdens Billions of U.S. Dollars -1.00 1962-01-02 2021-06-10 TRUE FALSE
CONSUMERNSA.INTEREST.by.GDP Calc Consumer Loans (Not Seasonally Adjusted) Interest Burden Divided by GDP PERCENT -1.00 1947-01-01 2021-01-01 TRUE FALSE
TOTLNNSA Calc Total Loans Not Seasonally Adjusted (BUSLOANS+REALLNSA+CONSUMERNSA) Billions of U.S. Dollars -1.00 1947-01-01 2021-05-01 TRUE FALSE
TOTLNNSA.by.GDP Calc Total Loans Not Seasonally Adjusted divided by GDP Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
TOTLNNSA.INTEREST Calc Total Loans Not Seasonally Adjusted Interest Burdens Billions of U.S. Dollars -1.00 1962-01-02 2021-06-10 FALSE FALSE
TOTLNNSA.INTEREST.by.GDP Calc Total Loans Not Seasonally Adjusted Interest Burden Divided by GDP PERCENT -1.00 1947-01-01 2021-01-01 FALSE FALSE
WRESBAL.by.GDP Calc Reserve Balances with Federal Reserve Banks Divided by GDP PERCENT -1.00 1947-01-01 2021-01-01 FALSE FALSE
EXCSRESNW.by.GDP Calc Excess Reserves of Depository Institutions Divided by GDP PERCENT -1.00 1947-01-01 2021-01-01 TRUE FALSE
WLRRAL.by.GDP Calc Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Divided by GDP PERCENT -1.00 1947-01-01 2021-01-01 TRUE TRUE
SOFR99.minus.SOFR1 Calc Secured Overnight Financing Rate: 99th Percentile - 1st Percentile PERCENT -1.00 2018-04-03 2021-06-10 FALSE FALSE
EXPCH.minus.IMPCH Calc U.S. Exports to China (FAS Basis) - U.S. Imports to China (Customs Basis) Billions of dollars -1.00 1985-01-01 2021-04-01 TRUE FALSE
EXPMX.minus.IMPCH Calc U.S. Exports to Mexico (FAS Basis) - U.S. Imports to Mexico (Customs Basis) Billions of dollars -1.00 1985-01-01 2021-04-01 NA NA
SRPSABSNNCB.by.GDP Calc Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) Divided by GDP PERCENT -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASTLL.by.GDP Calc All sectors; total loans; liability, Level (NSA) Divided by GDP PERCENT -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASFMA.by.GDP Calc All sectors; farm mortgages; asset, Level (NSA) Divided by GDP PERCENT -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASFMA.by.ASTLL Calc All sectors; total loans Divided by farm mortgages PERCENT -1.00 1945-10-01 2021-01-01 TRUE FALSE
ASFMA.INTEREST Calc Farm Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens Billions of U.S. Dollars -1.00 1971-04-02 2021-06-10 FALSE FALSE
ASFMA.INTEREST.by.GDP Calc Farm Mortgages (Quarterly, NSA) Interest Burden Divided by GDP PERCENT -1.00 1947-01-01 2021-01-01 FALSE FALSE
FARMINCOME.by.GDP Calc Farm Income (Annual, NSA) Divided by GDP PERCENT -1.00 1947-01-01 2021-01-01 TRUE FALSE
BOGMBASE.by.GDP Calc BOGMBASE Divided by GDP PERCENT -1.00 1947-01-01 2021-01-01 TRUE TRUE
WALCL.by.GDP Calc All Federal Reserve Banks: Total Assets Divided by GDP PERCENT -1.00 1947-01-01 2021-01-01 TRUE TRUE
ECBASSETS.by.EUNNGDP Calc Central Bank Assets for Euro Area (11-19 Countries) Divided by GDP PERCENT -1.00 1995-01-01 2021-01-01 TRUE FALSE
DGS30TO10 Calc Yield Curve, 30 and 10 Year Treasury (DGS30-DGS10) Percent -1.00 1977-02-15 2021-06-10 FALSE FALSE
DGS10TO1 Calc Yield Curve, 10 and 1 Year Treasury (DGS10-DGS1) Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10TO2 Calc Yield Curve, 10 and 2 Year Treasury (DGS10-DGS2) Percent -1.00 1976-06-01 2021-06-10 FALSE FALSE
DGS10TOTB3MS Calc Yield Curve, 10 and 3 Month Treasury (DGS10-TB3MS) Percent -1.00 1962-01-02 2021-05-01 FALSE FALSE
DGS10TODTB3 Calc Yield Curve, 10 and 3 Month Treasury (DGS10-DTB3) Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10ByAAA Calc AAA ratio to 10 year treasury (AAA/DGS10)
-1.00 1962-01-02 2021-05-01 TRUE FALSE
LNU03000000BYPOPTHM Calc Unemployment level (NSA) / Population % -1.00 1959-01-01 2021-04-01 TRUE FALSE
UNEMPLOYBYPOPTHM Calc Unemployment level, seasonally adjusted / Population % -1.00 1959-01-01 2021-04-01 TRUE FALSE
NPPTTLBYPOPTHM Calc ADP Private Employment / Population % -1.00 2002-04-01 2021-04-01 TRUE TRUE
U6toU3 Calc U6RATE minums UNRATE % -1.00 1994-01-01 2021-05-01 TRUE FALSE
CHRISCMEHG1.by.PPIACO Calc Copper, $/lb, Normalized by commodities producer price index $/lb/Index -1.00 1959-07-01 2021-04-01 FALSE FALSE
CHRISCMEHG1.by.CPIAUCSL Calc Copper, $/lb, Normalized by consumer price index $/lb/Index -1.00 1959-07-01 2021-05-01 FALSE FALSE
DCOILBRENTEU.by.PPIACO Calc Crude Oil - Brent, $/bbl, Normalized by producer price index c.o. $/bbl/Index -1.00 1987-05-20 2021-04-01 FALSE FALSE
DCOILWTICO.by.PPIACO Calc Crude Oil - WTI, $/bbl, Normalized by producer price index c.o. $/bbl/Index -1.00 1986-01-02 2021-04-01 FALSE FALSE
GOLDAMGBD228NLBM.by.PPIACO Calc Gold, USD/Troy OUnce, Normalized by commodities producer price index $/t oz/Index -1.00 1968-04-01 2021-04-01 FALSE FALSE
GOLDAMGBD228NLBM.by.CPIAUCSL Calc Gold, USD/Troy OUnce, Normalized by consumer price index $/t oz/Index -1.00 1968-04-01 2021-05-01 FALSE FALSE
GOLDAMGBD228NLBM.by.GDP Calc Gold, USD/Troy OUnce, Normalized by GDP $/t oz/Index -1.00 1968-04-01 2021-01-01 FALSE FALSE
GSG.Close.by.GDPDEF Calc GSCI Commodity-Indexed Trust, Normalized by GDP def (-) -1.00 2006-07-21 2021-01-01 TRUE TRUE
GSG.Close.by.GSPC.Close Calc GSCI Commodity-Indexed Trust, Normalized by S&P 500 (-) -1.00 2006-07-21 2021-06-11 FALSE FALSE
GDPBYPOPTHM Calc GDP/Population $/person -1.00 1959-01-01 2021-01-01 TRUE FALSE
GDPBYCPIAUCSL Calc GDP divided by CPI GDP/CPIAUCSL, Billions of Dollars -1.00 1947-01-01 2021-01-01 TRUE FALSE
GDPBYCPIAUCSLBYPOPTHM Calc GDP divided by CPI/Population $/Person -1.00 1959-01-01 2021-04-01 TRUE FALSE
GSPC.CloseBYMDY.Close Calc GSPC by MDY
-1.00 1995-05-04 2021-06-11 FALSE FALSE
QQQ.CloseBYMDY.Close Calc QQQ by MDY
-1.00 1999-03-10 2021-06-11 FALSE FALSE
GSPC.DailySwing Calc S&P 500 (^GSPC) Daily Swing: (High - Low) / Open
-1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Open.by.GDPDEF Calc S&P 500 (^GSPC) Open divided by GDP deflator Dollars -1.00 1947-01-01 2021-01-01 TRUE TRUE
GSPC.Close.by.GDPDEF Calc S&P 500 (^GSPC) Close divided by GDP deflator Dollars -1.00 1947-01-01 2021-01-01 TRUE TRUE
HNFSUSNSA.minus.HSN1FNSA Calc Houses for sale - houses sold Thousands of Units -1.00 1963-01-01 2021-04-01 TRUE TRUE
MSPUS.times.HOUST Calc New privately owned units start times median price Millions of dollars -1.00 1959-01-01 2021-04-01 TRUE FALSE
MSPUS.times.HNFSUSNSA Calc New privately owned 1-family units for sale times median price Millions of dollars -1.00 1959-01-01 2021-04-01 TRUE TRUE
CPIAUCSL_YoY Calc Consumer Price Index for All Urban Consumers: All Items Year over Year Percent -1.00 1947-01-01 2021-05-01 FALSE FALSE
CPIAUCSL_YoY4 Calc Consumer Price Index for All Urban Consumers: All Items 4 Year over 4 Year Percent -1.00 1947-01-01 2021-05-01 FALSE FALSE
CPIAUCSL_YoY5 Calc Consumer Price Index for All Urban Consumers: All Items 5 Year over 5 Year Percent -1.00 1947-01-01 2021-05-01 FALSE FALSE
CPIAUCSL_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Consumer Price Index for All Urban Consumers: All Items /period -1.00 1947-01-01 2021-05-01 TRUE TRUE
CPIAUCSL_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Consumer Price Index for All Urban Consumers: All Items /period -1.00 1947-01-01 2021-05-01 FALSE FALSE
CPIAUCSL_SmoothDer Calc Derivative of Smoothed Consumer Price Index for All Urban Consumers: All Items /period -1.00 1947-01-01 2021-05-01 TRUE TRUE
CPIAUCSL_Log Calc Log of Consumer Price Index for All Urban Consumers: All Items log() -1.00 1947-01-01 2021-05-01 TRUE TRUE
CPIAUCSL_mva200 Calc Consumer Price Index for All Urban Consumers: All Items 200 Day MA 200 Day MA -1.00 1947-01-01 2021-05-01 TRUE TRUE
CPIAUCSL_mva050 Calc Consumer Price Index for All Urban Consumers: All Items 50 Day MA 50 Day MA -1.00 1947-01-01 2021-05-01 TRUE TRUE
USREC_YoY Calc NBER based Recession Indicators Year over Year Percent -1.00 1854-12-01 2021-05-01 TRUE FALSE
USREC_YoY4 Calc NBER based Recession Indicators 4 Year over 4 Year Percent -1.00 1854-12-01 2021-05-01 TRUE TRUE
USREC_YoY5 Calc NBER based Recession Indicators 5 Year over 5 Year Percent -1.00 1854-12-01 2021-05-01 TRUE TRUE
USREC_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) NBER based Recession Indicators /period -1.00 1854-12-01 2021-05-01 FALSE FALSE
USREC_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) NBER based Recession Indicators /period -1.00 1854-12-01 2021-05-01 FALSE FALSE
USREC_SmoothDer Calc Derivative of Smoothed NBER based Recession Indicators /period -1.00 1854-12-01 2021-05-01 TRUE TRUE
USREC_Log Calc Log of NBER based Recession Indicators log() -1.00 1854-12-01 2021-05-01 TRUE TRUE
USREC_mva200 Calc NBER based Recession Indicators 200 Day MA 200 Day MA -1.00 1854-12-01 2021-05-01 TRUE TRUE
USREC_mva050 Calc NBER based Recession Indicators 50 Day MA 50 Day MA -1.00 1854-12-01 2021-05-01 TRUE TRUE
UNRATE_YoY Calc Civilian Unemployment Rate U-3 Year over Year Percent -1.00 1948-01-01 2021-05-01 TRUE FALSE
UNRATE_YoY4 Calc Civilian Unemployment Rate U-3 4 Year over 4 Year Percent -1.00 1948-01-01 2021-05-01 TRUE FALSE
UNRATE_YoY5 Calc Civilian Unemployment Rate U-3 5 Year over 5 Year Percent -1.00 1948-01-01 2021-05-01 FALSE FALSE
UNRATE_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Civilian Unemployment Rate U-3 /period -1.00 1948-01-01 2021-05-01 FALSE FALSE
UNRATE_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Civilian Unemployment Rate U-3 /period -1.00 1948-01-01 2021-05-01 FALSE FALSE
UNRATE_SmoothDer Calc Derivative of Smoothed Civilian Unemployment Rate U-3 /period -1.00 1948-01-01 2021-05-01 TRUE TRUE
UNRATE_Log Calc Log of Civilian Unemployment Rate U-3 log() -1.00 1948-01-01 2021-05-01 TRUE FALSE
UNRATE_mva200 Calc Civilian Unemployment Rate U-3 200 Day MA 200 Day MA -1.00 1948-01-01 2021-05-01 FALSE FALSE
UNRATE_mva050 Calc Civilian Unemployment Rate U-3 50 Day MA 50 Day MA -1.00 1948-01-01 2021-05-01 FALSE FALSE
PCEPI_YoY Calc Personal Consumption Expenditures: Chain-type Price Index Year over Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
PCEPI_YoY4 Calc Personal Consumption Expenditures: Chain-type Price Index 4 Year over 4 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
PCEPI_YoY5 Calc Personal Consumption Expenditures: Chain-type Price Index 5 Year over 5 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
PCEPI_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Personal Consumption Expenditures: Chain-type Price Index /period -1.00 1959-01-01 2021-04-01 TRUE TRUE
PCEPI_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Personal Consumption Expenditures: Chain-type Price Index /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
PCEPI_SmoothDer Calc Derivative of Smoothed Personal Consumption Expenditures: Chain-type Price Index /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
PCEPI_Log Calc Log of Personal Consumption Expenditures: Chain-type Price Index log() -1.00 1959-01-01 2021-04-01 TRUE TRUE
PCEPI_mva200 Calc Personal Consumption Expenditures: Chain-type Price Index 200 Day MA 200 Day MA -1.00 1959-01-01 2021-04-01 TRUE TRUE
PCEPI_mva050 Calc Personal Consumption Expenditures: Chain-type Price Index 50 Day MA 50 Day MA -1.00 1959-01-01 2021-04-01 TRUE TRUE
CCSA_YoY Calc Continued Claims (Insured Unemployment) Year over Year Percent -1.00 1967-01-07 2021-05-29 TRUE FALSE
CCSA_YoY4 Calc Continued Claims (Insured Unemployment) 4 Year over 4 Year Percent -1.00 1967-01-07 2021-05-29 FALSE FALSE
CCSA_YoY5 Calc Continued Claims (Insured Unemployment) 5 Year over 5 Year Percent -1.00 1967-01-07 2021-05-29 FALSE FALSE
CCSA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Continued Claims (Insured Unemployment) /period -1.00 1967-01-07 2021-05-29 TRUE FALSE
CCSA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Continued Claims (Insured Unemployment) /period -1.00 1967-01-07 2021-05-29 FALSE FALSE
CCSA_SmoothDer Calc Derivative of Smoothed Continued Claims (Insured Unemployment) /period -1.00 1967-01-07 2021-05-29 TRUE TRUE
CCSA_Log Calc Log of Continued Claims (Insured Unemployment) log() -1.00 1967-01-07 2021-05-29 FALSE FALSE
CCSA_mva200 Calc Continued Claims (Insured Unemployment) 200 Day MA 200 Day MA -1.00 1967-01-07 2021-05-29 FALSE FALSE
CCSA_mva050 Calc Continued Claims (Insured Unemployment) 50 Day MA 50 Day MA -1.00 1967-01-07 2021-05-29 FALSE FALSE
CCNSA_YoY Calc Continued Claims (Insured Unemployment, NSA) Year over Year Percent -1.00 1967-01-07 2021-05-29 TRUE FALSE
CCNSA_YoY4 Calc Continued Claims (Insured Unemployment, NSA) 4 Year over 4 Year Percent -1.00 1967-01-07 2021-05-29 FALSE FALSE
CCNSA_YoY5 Calc Continued Claims (Insured Unemployment, NSA) 5 Year over 5 Year Percent -1.00 1967-01-07 2021-05-29 FALSE FALSE
CCNSA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Continued Claims (Insured Unemployment, NSA) /period -1.00 1967-01-07 2021-05-29 FALSE FALSE
CCNSA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Continued Claims (Insured Unemployment, NSA) /period -1.00 1967-01-07 2021-05-29 FALSE FALSE
CCNSA_SmoothDer Calc Derivative of Smoothed Continued Claims (Insured Unemployment, NSA) /period -1.00 1967-01-07 2021-05-29 TRUE TRUE
CCNSA_Log Calc Log of Continued Claims (Insured Unemployment, NSA) log() -1.00 1967-01-07 2021-05-29 FALSE FALSE
CCNSA_mva200 Calc Continued Claims (Insured Unemployment, NSA) 200 Day MA 200 Day MA -1.00 1967-01-07 2021-05-29 FALSE FALSE
CCNSA_mva050 Calc Continued Claims (Insured Unemployment, NSA) 50 Day MA 50 Day MA -1.00 1967-01-07 2021-05-29 FALSE FALSE
NPPTTL_YoY Calc Total Nonfarm Private Payroll Employment (ADP) Year over Year Percent -1.00 2002-04-01 2021-05-01 FALSE FALSE
NPPTTL_YoY4 Calc Total Nonfarm Private Payroll Employment (ADP) 4 Year over 4 Year Percent -1.00 2002-04-01 2021-05-01 FALSE FALSE
NPPTTL_YoY5 Calc Total Nonfarm Private Payroll Employment (ADP) 5 Year over 5 Year Percent -1.00 2002-04-01 2021-05-01 FALSE FALSE
NPPTTL_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Total Nonfarm Private Payroll Employment (ADP) /period -1.00 2002-04-01 2021-05-01 TRUE TRUE
NPPTTL_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Total Nonfarm Private Payroll Employment (ADP) /period -1.00 2002-04-01 2021-05-01 FALSE FALSE
NPPTTL_SmoothDer Calc Derivative of Smoothed Total Nonfarm Private Payroll Employment (ADP) /period -1.00 2002-04-01 2021-05-01 FALSE FALSE
NPPTTL_Log Calc Log of Total Nonfarm Private Payroll Employment (ADP) log() -1.00 2002-04-01 2021-05-01 TRUE TRUE
NPPTTL_mva200 Calc Total Nonfarm Private Payroll Employment (ADP) 200 Day MA 200 Day MA -1.00 2002-04-01 2021-05-01 TRUE TRUE
NPPTTL_mva050 Calc Total Nonfarm Private Payroll Employment (ADP) 50 Day MA 50 Day MA -1.00 2002-04-01 2021-05-01 TRUE TRUE
U6RATE_YoY Calc Total unemployed + margin + part-time U-6 Year over Year Percent -1.00 1994-01-01 2021-05-01 TRUE FALSE
U6RATE_YoY4 Calc Total unemployed + margin + part-time U-6 4 Year over 4 Year Percent -1.00 1994-01-01 2021-05-01 TRUE FALSE
U6RATE_YoY5 Calc Total unemployed + margin + part-time U-6 5 Year over 5 Year Percent -1.00 1994-01-01 2021-05-01 FALSE FALSE
U6RATE_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Total unemployed + margin + part-time U-6 /period -1.00 1994-01-01 2021-05-01 FALSE FALSE
U6RATE_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Total unemployed + margin + part-time U-6 /period -1.00 1994-01-01 2021-05-01 FALSE FALSE
U6RATE_SmoothDer Calc Derivative of Smoothed Total unemployed + margin + part-time U-6 /period -1.00 1994-01-01 2021-05-01 TRUE TRUE
U6RATE_Log Calc Log of Total unemployed + margin + part-time U-6 log() -1.00 1994-01-01 2021-05-01 TRUE FALSE
U6RATE_mva200 Calc Total unemployed + margin + part-time U-6 200 Day MA 200 Day MA -1.00 1994-01-01 2021-05-01 FALSE FALSE
U6RATE_mva050 Calc Total unemployed + margin + part-time U-6 50 Day MA 50 Day MA -1.00 1994-01-01 2021-05-01 FALSE FALSE
PAYNSA_YoY Calc All Employees: Total Nonfarm Payrolls (NSA) Year over Year Percent -1.00 1939-01-01 2021-05-01 FALSE FALSE
PAYNSA_YoY4 Calc All Employees: Total Nonfarm Payrolls (NSA) 4 Year over 4 Year Percent -1.00 1939-01-01 2021-05-01 TRUE FALSE
PAYNSA_YoY5 Calc All Employees: Total Nonfarm Payrolls (NSA) 5 Year over 5 Year Percent -1.00 1939-01-01 2021-05-01 TRUE FALSE
PAYNSA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) All Employees: Total Nonfarm Payrolls (NSA) /period -1.00 1939-01-01 2021-05-01 TRUE TRUE
PAYNSA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) All Employees: Total Nonfarm Payrolls (NSA) /period -1.00 1939-01-01 2021-05-01 FALSE FALSE
PAYNSA_SmoothDer Calc Derivative of Smoothed All Employees: Total Nonfarm Payrolls (NSA) /period -1.00 1939-01-01 2021-05-01 FALSE FALSE
PAYNSA_Log Calc Log of All Employees: Total Nonfarm Payrolls (NSA) log() -1.00 1939-01-01 2021-05-01 TRUE TRUE
PAYNSA_mva200 Calc All Employees: Total Nonfarm Payrolls (NSA) 200 Day MA 200 Day MA -1.00 1939-01-01 2021-05-01 TRUE TRUE
PAYNSA_mva050 Calc All Employees: Total Nonfarm Payrolls (NSA) 50 Day MA 50 Day MA -1.00 1939-01-01 2021-05-01 TRUE TRUE
TABSHNO_YoY Calc Households and nonprofit organizations; total assets, Level Year over Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
TABSHNO_YoY4 Calc Households and nonprofit organizations; total assets, Level 4 Year over 4 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
TABSHNO_YoY5 Calc Households and nonprofit organizations; total assets, Level 5 Year over 5 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
TABSHNO_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Households and nonprofit organizations; total assets, Level /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
TABSHNO_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Households and nonprofit organizations; total assets, Level /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
TABSHNO_SmoothDer Calc Derivative of Smoothed Households and nonprofit organizations; total assets, Level /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
TABSHNO_Log Calc Log of Households and nonprofit organizations; total assets, Level log() -1.00 1945-10-01 2021-01-01 TRUE TRUE
TABSHNO_mva200 Calc Households and nonprofit organizations; total assets, Level 200 Day MA 200 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
TABSHNO_mva050 Calc Households and nonprofit organizations; total assets, Level 50 Day MA 50 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
HNONWPDPI_YoY Calc Household Net Worth, percent Dispsable Income Year over Year Percent -1.00 1946-10-01 2021-01-01 FALSE FALSE
HNONWPDPI_YoY4 Calc Household Net Worth, percent Dispsable Income 4 Year over 4 Year Percent -1.00 1946-10-01 2021-01-01 FALSE FALSE
HNONWPDPI_YoY5 Calc Household Net Worth, percent Dispsable Income 5 Year over 5 Year Percent -1.00 1946-10-01 2021-01-01 FALSE FALSE
HNONWPDPI_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Household Net Worth, percent Dispsable Income /period -1.00 1946-10-01 2021-01-01 TRUE FALSE
HNONWPDPI_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Household Net Worth, percent Dispsable Income /period -1.00 1946-10-01 2021-01-01 FALSE FALSE
HNONWPDPI_SmoothDer Calc Derivative of Smoothed Household Net Worth, percent Dispsable Income /period -1.00 1946-10-01 2021-01-01 TRUE FALSE
HNONWPDPI_Log Calc Log of Household Net Worth, percent Dispsable Income log() -1.00 1946-10-01 2021-01-01 TRUE FALSE
HNONWPDPI_mva200 Calc Household Net Worth, percent Dispsable Income 200 Day MA 200 Day MA -1.00 1946-10-01 2021-01-01 FALSE FALSE
HNONWPDPI_mva050 Calc Household Net Worth, percent Dispsable Income 50 Day MA 50 Day MA -1.00 1946-10-01 2021-01-01 TRUE FALSE
INDPRO_YoY Calc Industrial Production Index Year over Year Percent -1.00 1919-01-01 2021-04-01 FALSE FALSE
INDPRO_YoY4 Calc Industrial Production Index 4 Year over 4 Year Percent -1.00 1919-01-01 2021-04-01 FALSE FALSE
INDPRO_YoY5 Calc Industrial Production Index 5 Year over 5 Year Percent -1.00 1919-01-01 2021-04-01 FALSE FALSE
INDPRO_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Industrial Production Index /period -1.00 1919-01-01 2021-04-01 TRUE TRUE
INDPRO_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Industrial Production Index /period -1.00 1919-01-01 2021-04-01 FALSE FALSE
INDPRO_SmoothDer Calc Derivative of Smoothed Industrial Production Index /period -1.00 1919-01-01 2021-04-01 FALSE FALSE
INDPRO_Log Calc Log of Industrial Production Index log() -1.00 1919-01-01 2021-04-01 TRUE FALSE
INDPRO_mva200 Calc Industrial Production Index 200 Day MA 200 Day MA -1.00 1919-01-01 2021-04-01 TRUE TRUE
INDPRO_mva050 Calc Industrial Production Index 50 Day MA 50 Day MA -1.00 1919-01-01 2021-04-01 TRUE TRUE
RRSFS_YoY Calc Real Retail and Food Services Sales Year over Year Percent -1.00 1992-01-01 2021-04-01 FALSE FALSE
RRSFS_YoY4 Calc Real Retail and Food Services Sales 4 Year over 4 Year Percent -1.00 1992-01-01 2021-04-01 FALSE FALSE
RRSFS_YoY5 Calc Real Retail and Food Services Sales 5 Year over 5 Year Percent -1.00 1992-01-01 2021-04-01 FALSE FALSE
RRSFS_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Real Retail and Food Services Sales /period -1.00 1992-01-01 2021-04-01 TRUE TRUE
RRSFS_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Real Retail and Food Services Sales /period -1.00 1992-01-01 2021-04-01 FALSE FALSE
RRSFS_SmoothDer Calc Derivative of Smoothed Real Retail and Food Services Sales /period -1.00 1992-01-01 2021-04-01 TRUE TRUE
RRSFS_Log Calc Log of Real Retail and Food Services Sales log() -1.00 1992-01-01 2021-04-01 TRUE FALSE
RRSFS_mva200 Calc Real Retail and Food Services Sales 200 Day MA 200 Day MA -1.00 1992-01-01 2021-04-01 TRUE TRUE
RRSFS_mva050 Calc Real Retail and Food Services Sales 50 Day MA 50 Day MA -1.00 1992-01-01 2021-04-01 FALSE FALSE
RSALES_YoY Calc Real Retail Sales (DISCONTINUED) Year over Year Percent -1.00 1947-01-01 2001-04-01 TRUE TRUE
RSALES_YoY4 Calc Real Retail Sales (DISCONTINUED) 4 Year over 4 Year Percent -1.00 1947-01-01 2001-04-01 TRUE TRUE
RSALES_YoY5 Calc Real Retail Sales (DISCONTINUED) 5 Year over 5 Year Percent -1.00 1947-01-01 2001-04-01 TRUE TRUE
RSALES_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Real Retail Sales (DISCONTINUED) /period -1.00 1947-01-01 2001-04-01 FALSE FALSE
RSALES_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Real Retail Sales (DISCONTINUED) /period -1.00 1947-01-01 2001-04-01 FALSE FALSE
RSALES_SmoothDer Calc Derivative of Smoothed Real Retail Sales (DISCONTINUED) /period -1.00 1947-01-01 2001-04-01 FALSE FALSE
RSALES_Log Calc Log of Real Retail Sales (DISCONTINUED) log() -1.00 1947-01-01 2001-04-01 TRUE TRUE
RSALES_mva200 Calc Real Retail Sales (DISCONTINUED) 200 Day MA 200 Day MA -1.00 1947-01-01 2001-04-01 TRUE TRUE
RSALES_mva050 Calc Real Retail Sales (DISCONTINUED) 50 Day MA 50 Day MA -1.00 1947-01-01 2001-04-01 TRUE TRUE
W875RX1_YoY Calc Real personal income excluding current transfer receipts Year over Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
W875RX1_YoY4 Calc Real personal income excluding current transfer receipts 4 Year over 4 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
W875RX1_YoY5 Calc Real personal income excluding current transfer receipts 5 Year over 5 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
W875RX1_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Real personal income excluding current transfer receipts /period -1.00 1959-01-01 2021-04-01 TRUE TRUE
W875RX1_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Real personal income excluding current transfer receipts /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
W875RX1_SmoothDer Calc Derivative of Smoothed Real personal income excluding current transfer receipts /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
W875RX1_Log Calc Log of Real personal income excluding current transfer receipts log() -1.00 1959-01-01 2021-04-01 TRUE TRUE
W875RX1_mva200 Calc Real personal income excluding current transfer receipts 200 Day MA 200 Day MA -1.00 1959-01-01 2021-04-01 TRUE TRUE
W875RX1_mva050 Calc Real personal income excluding current transfer receipts 50 Day MA 50 Day MA -1.00 1959-01-01 2021-04-01 TRUE TRUE
RPI_YoY Calc Real personal income Year over Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
RPI_YoY4 Calc Real personal income 4 Year over 4 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
RPI_YoY5 Calc Real personal income 5 Year over 5 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
RPI_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Real personal income /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
RPI_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Real personal income /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
RPI_SmoothDer Calc Derivative of Smoothed Real personal income /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
RPI_Log Calc Log of Real personal income log() -1.00 1959-01-01 2021-04-01 TRUE FALSE
RPI_mva200 Calc Real personal income 200 Day MA 200 Day MA -1.00 1959-01-01 2021-04-01 TRUE TRUE
RPI_mva050 Calc Real personal income 50 Day MA 50 Day MA -1.00 1959-01-01 2021-04-01 FALSE FALSE
PCOPPUSDM_YoY Calc Global price of Copper Year over Year Percent -1.00 1990-01-01 2021-05-01 FALSE FALSE
PCOPPUSDM_YoY4 Calc Global price of Copper 4 Year over 4 Year Percent -1.00 1990-01-01 2021-05-01 FALSE FALSE
PCOPPUSDM_YoY5 Calc Global price of Copper 5 Year over 5 Year Percent -1.00 1990-01-01 2021-05-01 FALSE FALSE
PCOPPUSDM_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Global price of Copper /period -1.00 1990-01-01 2021-05-01 TRUE TRUE
PCOPPUSDM_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Global price of Copper /period -1.00 1990-01-01 2021-05-01 FALSE FALSE
PCOPPUSDM_SmoothDer Calc Derivative of Smoothed Global price of Copper /period -1.00 1990-01-01 2021-05-01 FALSE FALSE
PCOPPUSDM_Log Calc Log of Global price of Copper log() -1.00 1990-01-01 2021-05-01 TRUE TRUE
PCOPPUSDM_mva200 Calc Global price of Copper 200 Day MA 200 Day MA -1.00 1990-01-01 2021-05-01 TRUE TRUE
PCOPPUSDM_mva050 Calc Global price of Copper 50 Day MA 50 Day MA -1.00 1990-01-01 2021-05-01 TRUE TRUE
NOBL.Open_YoY Calc Year over Year Percent -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2013-10-10 2021-06-11 TRUE TRUE
NOBL.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Open_Log Calc Log of log() -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2013-10-10 2021-06-11 TRUE TRUE
NOBL.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2013-10-10 2021-06-11 TRUE TRUE
NOBL.High_YoY Calc Year over Year Percent -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2013-10-10 2021-06-11 TRUE TRUE
NOBL.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.High_Log Calc Log of log() -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2013-10-10 2021-06-11 TRUE TRUE
NOBL.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2013-10-10 2021-06-11 TRUE TRUE
NOBL.Low_YoY Calc Year over Year Percent -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2013-10-10 2021-06-11 TRUE TRUE
NOBL.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Low_Log Calc Log of log() -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2013-10-10 2021-06-11 TRUE TRUE
NOBL.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2013-10-10 2021-06-11 TRUE TRUE
NOBL.Close_YoY Calc Year over Year Percent -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2013-10-10 2021-06-11 TRUE TRUE
NOBL.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Close_Log Calc Log of log() -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2013-10-10 2021-06-11 TRUE TRUE
NOBL.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2013-10-10 2021-06-11 TRUE TRUE
NOBL.Volume_YoY Calc Year over Year Percent -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Volume_Log Calc Log of log() -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Adjusted_YoY Calc Year over Year Percent -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2013-10-10 2021-06-11 TRUE TRUE
NOBL.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Adjusted_Log Calc Log of log() -1.00 2013-10-10 2021-06-11 FALSE FALSE
NOBL.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2013-10-10 2021-06-11 TRUE TRUE
NOBL.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2013-10-10 2021-06-11 TRUE TRUE
SCHD.Open_YoY Calc Year over Year Percent -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-10-20 2021-06-11 TRUE TRUE
SCHD.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Open_Log Calc Log of log() -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-10-20 2021-06-11 TRUE TRUE
SCHD.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-10-20 2021-06-11 TRUE TRUE
SCHD.High_YoY Calc Year over Year Percent -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-10-20 2021-06-11 TRUE TRUE
SCHD.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.High_Log Calc Log of log() -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-10-20 2021-06-11 TRUE TRUE
SCHD.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-10-20 2021-06-11 TRUE TRUE
SCHD.Low_YoY Calc Year over Year Percent -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-10-20 2021-06-11 TRUE TRUE
SCHD.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-10-20 2021-06-11 TRUE TRUE
SCHD.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Low_Log Calc Log of log() -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-10-20 2021-06-11 TRUE TRUE
SCHD.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-10-20 2021-06-11 TRUE TRUE
SCHD.Close_YoY Calc Year over Year Percent -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-10-20 2021-06-11 TRUE TRUE
SCHD.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-10-20 2021-06-11 TRUE TRUE
SCHD.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Close_Log Calc Log of log() -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-10-20 2021-06-11 TRUE TRUE
SCHD.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-10-20 2021-06-11 TRUE TRUE
SCHD.Volume_YoY Calc Year over Year Percent -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Volume_Log Calc Log of log() -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Adjusted_YoY Calc Year over Year Percent -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-10-20 2021-06-11 TRUE TRUE
SCHD.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-10-20 2021-06-11 TRUE TRUE
SCHD.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Adjusted_Log Calc Log of log() -1.00 2011-10-20 2021-06-11 FALSE FALSE
SCHD.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-10-20 2021-06-11 TRUE TRUE
SCHD.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-10-20 2021-06-11 TRUE TRUE
PFF.Open_YoY Calc Year over Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-03-30 2021-06-11 TRUE FALSE
PFF.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-03-30 2021-06-11 TRUE TRUE
PFF.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-03-30 2021-06-11 TRUE TRUE
PFF.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Open_Log Calc Log of log() -1.00 2007-03-30 2021-06-11 TRUE FALSE
PFF.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-03-30 2021-06-11 TRUE TRUE
PFF.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-03-30 2021-06-11 TRUE TRUE
PFF.High_YoY Calc Year over Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-03-30 2021-06-11 TRUE TRUE
PFF.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-03-30 2021-06-11 TRUE TRUE
PFF.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.High_Log Calc Log of log() -1.00 2007-03-30 2021-06-11 TRUE FALSE
PFF.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-03-30 2021-06-11 TRUE TRUE
PFF.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Low_YoY Calc Year over Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-03-30 2021-06-11 TRUE TRUE
PFF.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-03-30 2021-06-11 TRUE TRUE
PFF.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Low_Log Calc Log of log() -1.00 2007-03-30 2021-06-11 TRUE FALSE
PFF.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-03-30 2021-06-11 TRUE TRUE
PFF.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-03-30 2021-06-11 TRUE TRUE
PFF.Close_YoY Calc Year over Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-03-30 2021-06-11 TRUE TRUE
PFF.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-03-30 2021-06-11 TRUE TRUE
PFF.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Close_Log Calc Log of log() -1.00 2007-03-30 2021-06-11 TRUE FALSE
PFF.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-03-30 2021-06-11 TRUE TRUE
PFF.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-03-30 2021-06-11 TRUE TRUE
PFF.Volume_YoY Calc Year over Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Volume_Log Calc Log of log() -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Adjusted_YoY Calc Year over Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-03-30 2021-06-11 TRUE TRUE
PFF.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-03-30 2021-06-11 TRUE TRUE
PFF.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-03-30 2021-06-11 FALSE FALSE
PFF.Adjusted_Log Calc Log of log() -1.00 2007-03-30 2021-06-11 TRUE TRUE
PFF.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-03-30 2021-06-11 TRUE TRUE
PFF.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-03-30 2021-06-11 TRUE TRUE
HPI.Open_YoY Calc Year over Year Percent -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2003-07-15 2021-06-11 TRUE FALSE
HPI.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2003-07-15 2021-06-11 TRUE TRUE
HPI.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Open_Log Calc Log of log() -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2003-07-15 2021-06-11 TRUE TRUE
HPI.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2003-07-15 2021-06-11 TRUE TRUE
HPI.High_YoY Calc Year over Year Percent -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2003-07-15 2021-06-11 TRUE FALSE
HPI.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2003-07-15 2021-06-11 TRUE TRUE
HPI.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.High_Log Calc Log of log() -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2003-07-15 2021-06-11 TRUE TRUE
HPI.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2003-07-15 2021-06-11 TRUE TRUE
HPI.Low_YoY Calc Year over Year Percent -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2003-07-15 2021-06-11 TRUE FALSE
HPI.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2003-07-15 2021-06-11 TRUE TRUE
HPI.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Low_Log Calc Log of log() -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2003-07-15 2021-06-11 TRUE TRUE
HPI.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2003-07-15 2021-06-11 TRUE TRUE
HPI.Close_YoY Calc Year over Year Percent -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2003-07-15 2021-06-11 TRUE FALSE
HPI.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2003-07-15 2021-06-11 TRUE TRUE
HPI.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Close_Log Calc Log of log() -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2003-07-15 2021-06-11 TRUE TRUE
HPI.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2003-07-15 2021-06-11 TRUE TRUE
HPI.Volume_YoY Calc Year over Year Percent -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Volume_Log Calc Log of log() -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Adjusted_YoY Calc Year over Year Percent -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2003-07-15 2021-06-11 TRUE FALSE
HPI.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2003-07-15 2021-06-11 TRUE TRUE
HPI.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2003-07-15 2021-06-11 FALSE FALSE
HPI.Adjusted_Log Calc Log of log() -1.00 2003-07-15 2021-06-11 TRUE TRUE
HPI.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2003-07-15 2021-06-11 TRUE TRUE
HPI.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2003-07-15 2021-06-11 TRUE TRUE
GSFTX.Open_YoY Calc Year over Year Percent -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.Open_Log Calc Log of log() -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.High_YoY Calc Year over Year Percent -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.High_Log Calc Log of log() -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Low_YoY Calc Year over Year Percent -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.Low_Log Calc Log of log() -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Close_YoY Calc Year over Year Percent -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.Close_Log Calc Log of log() -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Volume_YoY Calc Year over Year Percent -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Volume_Log Calc Log of log() -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Adjusted_YoY Calc Year over Year Percent -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.Adjusted_Log Calc Log of log() -1.00 1998-03-04 2021-06-11 FALSE FALSE
GSFTX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1998-03-04 2021-06-11 TRUE TRUE
GSFTX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1998-03-04 2021-06-11 TRUE TRUE
LFMIX.Open_YoY Calc Year over Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Open_Log Calc Log of log() -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.High_YoY Calc Year over Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.High_Log Calc Log of log() -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Low_YoY Calc Year over Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Low_Log Calc Log of log() -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Close_YoY Calc Year over Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Close_Log Calc Log of log() -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Volume_YoY Calc Year over Year Percent -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Volume_Log Calc Log of log() -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Adjusted_YoY Calc Year over Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Adjusted_Log Calc Log of log() -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMIX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMIX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Open_YoY Calc Year over Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Open_Log Calc Log of log() -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.High_YoY Calc Year over Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.High_Log Calc Log of log() -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Low_YoY Calc Year over Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Low_Log Calc Log of log() -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Close_YoY Calc Year over Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Close_Log Calc Log of log() -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Volume_YoY Calc Year over Year Percent -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Volume_Log Calc Log of log() -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Adjusted_YoY Calc Year over Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Adjusted_Log Calc Log of log() -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMCX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMCX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Open_YoY Calc Year over Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Open_Log Calc Log of log() -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.High_YoY Calc Year over Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.High_Log Calc Log of log() -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Low_YoY Calc Year over Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Low_Log Calc Log of log() -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Close_YoY Calc Year over Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Close_Log Calc Log of log() -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Volume_YoY Calc Year over Year Percent -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Volume_Log Calc Log of log() -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Adjusted_YoY Calc Year over Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Adjusted_Log Calc Log of log() -1.00 2011-04-06 2021-06-11 FALSE FALSE
LFMAX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LFMAX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-06 2021-06-11 TRUE TRUE
LCSIX.Open_YoY Calc Year over Year Percent -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Open_Log Calc Log of log() -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2012-01-17 2021-06-11 TRUE FALSE
LCSIX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.High_YoY Calc Year over Year Percent -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.High_Log Calc Log of log() -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2012-01-17 2021-06-11 TRUE FALSE
LCSIX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Low_YoY Calc Year over Year Percent -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Low_Log Calc Log of log() -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2012-01-17 2021-06-11 TRUE FALSE
LCSIX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Close_YoY Calc Year over Year Percent -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Close_Log Calc Log of log() -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2012-01-17 2021-06-11 TRUE FALSE
LCSIX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Volume_YoY Calc Year over Year Percent -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Volume_Log Calc Log of log() -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Adjusted_YoY Calc Year over Year Percent -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Adjusted_Log Calc Log of log() -1.00 2012-01-17 2021-06-11 FALSE FALSE
LCSIX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2012-01-17 2021-06-11 TRUE TRUE
LCSIX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2012-01-17 2021-06-11 TRUE TRUE
BSV.Open_YoY Calc Year over Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-04-10 2021-06-11 TRUE FALSE
BSV.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-04-10 2021-06-11 TRUE TRUE
BSV.Open_Log Calc Log of log() -1.00 2007-04-10 2021-06-11 TRUE FALSE
BSV.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-04-10 2021-06-11 TRUE FALSE
BSV.High_YoY Calc Year over Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-04-10 2021-06-11 TRUE TRUE
BSV.High_Log Calc Log of log() -1.00 2007-04-10 2021-06-11 TRUE FALSE
BSV.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-04-10 2021-06-11 TRUE FALSE
BSV.Low_YoY Calc Year over Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-04-10 2021-06-11 TRUE FALSE
BSV.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-04-10 2021-06-11 TRUE TRUE
BSV.Low_Log Calc Log of log() -1.00 2007-04-10 2021-06-11 TRUE FALSE
BSV.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-04-10 2021-06-11 TRUE FALSE
BSV.Close_YoY Calc Year over Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-04-10 2021-06-11 TRUE TRUE
BSV.Close_Log Calc Log of log() -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-04-10 2021-06-11 TRUE FALSE
BSV.Volume_YoY Calc Year over Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Volume_Log Calc Log of log() -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Adjusted_YoY Calc Year over Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-04-10 2021-06-11 TRUE TRUE
BSV.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-04-10 2021-06-11 TRUE TRUE
BSV.Adjusted_Log Calc Log of log() -1.00 2007-04-10 2021-06-11 FALSE FALSE
BSV.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-04-10 2021-06-11 TRUE FALSE
BSV.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-04-10 2021-06-11 TRUE FALSE
VBIRX.Open_YoY Calc Year over Year Percent -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2001-11-12 2021-06-11 TRUE TRUE
VBIRX.Open_Log Calc Log of log() -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2001-11-12 2021-06-11 TRUE FALSE
VBIRX.High_YoY Calc Year over Year Percent -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2001-11-12 2021-06-11 TRUE TRUE
VBIRX.High_Log Calc Log of log() -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2001-11-12 2021-06-11 TRUE FALSE
VBIRX.Low_YoY Calc Year over Year Percent -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2001-11-12 2021-06-11 TRUE TRUE
VBIRX.Low_Log Calc Log of log() -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2001-11-12 2021-06-11 TRUE FALSE
VBIRX.Close_YoY Calc Year over Year Percent -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2001-11-12 2021-06-11 TRUE TRUE
VBIRX.Close_Log Calc Log of log() -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2001-11-12 2021-06-11 TRUE FALSE
VBIRX.Volume_YoY Calc Year over Year Percent -1.00 2001-11-12 2021-06-11 TRUE TRUE
VBIRX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2001-11-12 2021-06-11 TRUE TRUE
VBIRX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2001-11-12 2021-06-11 TRUE TRUE
VBIRX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2001-11-12 2021-06-11 TRUE TRUE
VBIRX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2001-11-12 2021-06-11 TRUE TRUE
VBIRX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2001-11-12 2021-06-11 TRUE TRUE
VBIRX.Volume_Log Calc Log of log() -1.00 2001-11-12 2021-06-11 TRUE TRUE
VBIRX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2001-11-12 2021-06-11 TRUE TRUE
VBIRX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2001-11-12 2021-06-11 TRUE TRUE
VBIRX.Adjusted_YoY Calc Year over Year Percent -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2001-11-12 2021-06-11 TRUE FALSE
VBIRX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2001-11-12 2021-06-11 TRUE TRUE
VBIRX.Adjusted_Log Calc Log of log() -1.00 2001-11-12 2021-06-11 FALSE FALSE
VBIRX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2001-11-12 2021-06-11 TRUE FALSE
VBIRX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2001-11-12 2021-06-11 TRUE FALSE
BIV.Open_YoY Calc Year over Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-04-10 2021-06-11 TRUE FALSE
BIV.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Open_Log Calc Log of log() -1.00 2007-04-10 2021-06-11 TRUE FALSE
BIV.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-04-10 2021-06-11 TRUE FALSE
BIV.High_YoY Calc Year over Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-04-10 2021-06-11 TRUE FALSE
BIV.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.High_Log Calc Log of log() -1.00 2007-04-10 2021-06-11 TRUE FALSE
BIV.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-04-10 2021-06-11 TRUE FALSE
BIV.Low_YoY Calc Year over Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-04-10 2021-06-11 TRUE FALSE
BIV.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Low_Log Calc Log of log() -1.00 2007-04-10 2021-06-11 TRUE FALSE
BIV.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-04-10 2021-06-11 TRUE FALSE
BIV.Close_YoY Calc Year over Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Close_Log Calc Log of log() -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-04-10 2021-06-11 TRUE FALSE
BIV.Volume_YoY Calc Year over Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-04-10 2021-06-11 TRUE FALSE
BIV.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Volume_Log Calc Log of log() -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Adjusted_YoY Calc Year over Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-04-10 2021-06-11 TRUE FALSE
BIV.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Adjusted_Log Calc Log of log() -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-04-10 2021-06-11 FALSE FALSE
BIV.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-04-10 2021-06-11 TRUE FALSE
VFSUX.Open_YoY Calc Year over Year Percent -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2001-02-12 2021-06-11 TRUE FALSE
VFSUX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Open_Log Calc Log of log() -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2001-02-12 2021-06-11 TRUE FALSE
VFSUX.High_YoY Calc Year over Year Percent -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2001-02-12 2021-06-11 TRUE FALSE
VFSUX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.High_Log Calc Log of log() -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2001-02-12 2021-06-11 TRUE FALSE
VFSUX.Low_YoY Calc Year over Year Percent -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2001-02-12 2021-06-11 TRUE FALSE
VFSUX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Low_Log Calc Log of log() -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2001-02-12 2021-06-11 TRUE FALSE
VFSUX.Close_YoY Calc Year over Year Percent -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2001-02-12 2021-06-11 TRUE FALSE
VFSUX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Close_Log Calc Log of log() -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2001-02-12 2021-06-11 TRUE FALSE
VFSUX.Volume_YoY Calc Year over Year Percent -1.00 2001-02-12 2021-06-11 TRUE TRUE
VFSUX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2001-02-12 2021-06-11 TRUE TRUE
VFSUX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2001-02-12 2021-06-11 TRUE TRUE
VFSUX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2001-02-12 2021-06-11 TRUE TRUE
VFSUX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2001-02-12 2021-06-11 TRUE TRUE
VFSUX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2001-02-12 2021-06-11 TRUE TRUE
VFSUX.Volume_Log Calc Log of log() -1.00 2001-02-12 2021-06-11 TRUE TRUE
VFSUX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2001-02-12 2021-06-11 TRUE TRUE
VFSUX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2001-02-12 2021-06-11 TRUE TRUE
VFSUX.Adjusted_YoY Calc Year over Year Percent -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2001-02-12 2021-06-11 TRUE TRUE
VFSUX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Adjusted_Log Calc Log of log() -1.00 2001-02-12 2021-06-11 FALSE FALSE
VFSUX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2001-02-12 2021-06-11 TRUE TRUE
VFSUX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2001-02-12 2021-06-11 TRUE TRUE
LTUIX.Open_YoY Calc Year over Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1996-07-05 2021-06-11 TRUE FALSE
LTUIX.Open_Log Calc Log of log() -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.High_YoY Calc Year over Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1996-07-05 2021-06-11 TRUE FALSE
LTUIX.High_Log Calc Log of log() -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Low_YoY Calc Year over Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1996-07-05 2021-06-11 TRUE FALSE
LTUIX.Low_Log Calc Log of log() -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Close_YoY Calc Year over Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1996-07-05 2021-06-11 TRUE FALSE
LTUIX.Close_Log Calc Log of log() -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Volume_YoY Calc Year over Year Percent -1.00 1996-07-05 2021-06-11 TRUE TRUE
LTUIX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1996-07-05 2021-06-11 TRUE TRUE
LTUIX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1996-07-05 2021-06-11 TRUE TRUE
LTUIX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1996-07-05 2021-06-11 TRUE TRUE
LTUIX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1996-07-05 2021-06-11 TRUE TRUE
LTUIX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1996-07-05 2021-06-11 TRUE TRUE
LTUIX.Volume_Log Calc Log of log() -1.00 1996-07-05 2021-06-11 TRUE TRUE
LTUIX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1996-07-05 2021-06-11 TRUE TRUE
LTUIX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1996-07-05 2021-06-11 TRUE TRUE
LTUIX.Adjusted_YoY Calc Year over Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1996-07-05 2021-06-11 TRUE FALSE
LTUIX.Adjusted_Log Calc Log of log() -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1996-07-05 2021-06-11 FALSE FALSE
LTUIX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1996-07-05 2021-06-11 TRUE FALSE
PTTPX.Open_YoY Calc Year over Year Percent -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2008-04-30 2021-06-11 TRUE FALSE
PTTPX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2008-04-30 2021-06-11 TRUE FALSE
PTTPX.Open_Log Calc Log of log() -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2008-04-30 2021-06-11 TRUE FALSE
PTTPX.High_YoY Calc Year over Year Percent -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2008-04-30 2021-06-11 TRUE FALSE
PTTPX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2008-04-30 2021-06-11 TRUE FALSE
PTTPX.High_Log Calc Log of log() -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2008-04-30 2021-06-11 TRUE FALSE
PTTPX.Low_YoY Calc Year over Year Percent -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2008-04-30 2021-06-11 TRUE FALSE
PTTPX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2008-04-30 2021-06-11 TRUE FALSE
PTTPX.Low_Log Calc Log of log() -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2008-04-30 2021-06-11 TRUE FALSE
PTTPX.Close_YoY Calc Year over Year Percent -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2008-04-30 2021-06-11 TRUE FALSE
PTTPX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2008-04-30 2021-06-11 TRUE FALSE
PTTPX.Close_Log Calc Log of log() -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2008-04-30 2021-06-11 TRUE FALSE
PTTPX.Volume_YoY Calc Year over Year Percent -1.00 2008-04-30 2021-06-11 TRUE TRUE
PTTPX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2008-04-30 2021-06-11 TRUE TRUE
PTTPX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2008-04-30 2021-06-11 TRUE TRUE
PTTPX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2008-04-30 2021-06-11 TRUE TRUE
PTTPX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2008-04-30 2021-06-11 TRUE TRUE
PTTPX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2008-04-30 2021-06-11 TRUE TRUE
PTTPX.Volume_Log Calc Log of log() -1.00 2008-04-30 2021-06-11 TRUE TRUE
PTTPX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2008-04-30 2021-06-11 TRUE TRUE
PTTPX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2008-04-30 2021-06-11 TRUE TRUE
PTTPX.Adjusted_YoY Calc Year over Year Percent -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2008-04-30 2021-06-11 TRUE FALSE
PTTPX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2008-04-30 2021-06-11 TRUE FALSE
PTTPX.Adjusted_Log Calc Log of log() -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2008-04-30 2021-06-11 FALSE FALSE
PTTPX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2008-04-30 2021-06-11 TRUE FALSE
NERYX.Open_YoY Calc Year over Year Percent -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1994-12-30 2021-06-11 TRUE FALSE
NERYX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Open_Log Calc Log of log() -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1994-12-30 2021-06-11 TRUE FALSE
NERYX.High_YoY Calc Year over Year Percent -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1994-12-30 2021-06-11 TRUE FALSE
NERYX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.High_Log Calc Log of log() -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1994-12-30 2021-06-11 TRUE FALSE
NERYX.Low_YoY Calc Year over Year Percent -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1994-12-30 2021-06-11 TRUE FALSE
NERYX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Low_Log Calc Log of log() -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1994-12-30 2021-06-11 TRUE FALSE
NERYX.Close_YoY Calc Year over Year Percent -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1994-12-30 2021-06-11 TRUE FALSE
NERYX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Close_Log Calc Log of log() -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1994-12-30 2021-06-11 TRUE FALSE
NERYX.Volume_YoY Calc Year over Year Percent -1.00 1994-12-30 2021-06-11 TRUE TRUE
NERYX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1994-12-30 2021-06-11 TRUE TRUE
NERYX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1994-12-30 2021-06-11 TRUE TRUE
NERYX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1994-12-30 2021-06-11 TRUE TRUE
NERYX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1994-12-30 2021-06-11 TRUE TRUE
NERYX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1994-12-30 2021-06-11 TRUE TRUE
NERYX.Volume_Log Calc Log of log() -1.00 1994-12-30 2021-06-11 TRUE TRUE
NERYX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1994-12-30 2021-06-11 TRUE TRUE
NERYX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1994-12-30 2021-06-11 TRUE TRUE
NERYX.Adjusted_YoY Calc Year over Year Percent -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1994-12-30 2021-06-11 TRUE FALSE
NERYX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Adjusted_Log Calc Log of log() -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1994-12-30 2021-06-11 FALSE FALSE
NERYX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1994-12-30 2021-06-11 TRUE FALSE
STIGX.Open_YoY Calc Year over Year Percent -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1992-06-08 2021-06-11 TRUE FALSE
STIGX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1992-06-08 2021-06-11 TRUE TRUE
STIGX.Open_Log Calc Log of log() -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1992-06-08 2021-06-11 TRUE FALSE
STIGX.High_YoY Calc Year over Year Percent -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1992-06-08 2021-06-11 TRUE FALSE
STIGX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1992-06-08 2021-06-11 TRUE TRUE
STIGX.High_Log Calc Log of log() -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1992-06-08 2021-06-11 TRUE FALSE
STIGX.Low_YoY Calc Year over Year Percent -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1992-06-08 2021-06-11 TRUE FALSE
STIGX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1992-06-08 2021-06-11 TRUE TRUE
STIGX.Low_Log Calc Log of log() -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1992-06-08 2021-06-11 TRUE FALSE
STIGX.Close_YoY Calc Year over Year Percent -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1992-06-08 2021-06-11 TRUE FALSE
STIGX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1992-06-08 2021-06-11 TRUE TRUE
STIGX.Close_Log Calc Log of log() -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1992-06-08 2021-06-11 TRUE FALSE
STIGX.Volume_YoY Calc Year over Year Percent -1.00 1992-06-08 2021-06-11 TRUE TRUE
STIGX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1992-06-08 2021-06-11 TRUE TRUE
STIGX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1992-06-08 2021-06-11 TRUE TRUE
STIGX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1992-06-08 2021-06-11 TRUE TRUE
STIGX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1992-06-08 2021-06-11 TRUE TRUE
STIGX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1992-06-08 2021-06-11 TRUE TRUE
STIGX.Volume_Log Calc Log of log() -1.00 1992-06-08 2021-06-11 TRUE TRUE
STIGX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1992-06-08 2021-06-11 TRUE TRUE
STIGX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1992-06-08 2021-06-11 TRUE TRUE
STIGX.Adjusted_YoY Calc Year over Year Percent -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1992-06-08 2021-06-11 TRUE FALSE
STIGX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1992-06-08 2021-06-11 TRUE TRUE
STIGX.Adjusted_Log Calc Log of log() -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1992-06-08 2021-06-11 FALSE FALSE
STIGX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1992-06-08 2021-06-11 TRUE FALSE
HLGAX.Open_YoY Calc Year over Year Percent -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1993-02-08 2021-06-11 TRUE FALSE
HLGAX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1993-02-08 2021-06-11 TRUE TRUE
HLGAX.Open_Log Calc Log of log() -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1993-02-08 2021-06-11 TRUE FALSE
HLGAX.High_YoY Calc Year over Year Percent -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1993-02-08 2021-06-11 TRUE FALSE
HLGAX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1993-02-08 2021-06-11 TRUE TRUE
HLGAX.High_Log Calc Log of log() -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1993-02-08 2021-06-11 TRUE FALSE
HLGAX.Low_YoY Calc Year over Year Percent -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1993-02-08 2021-06-11 TRUE FALSE
HLGAX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1993-02-08 2021-06-11 TRUE TRUE
HLGAX.Low_Log Calc Log of log() -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1993-02-08 2021-06-11 TRUE FALSE
HLGAX.Close_YoY Calc Year over Year Percent -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1993-02-08 2021-06-11 TRUE FALSE
HLGAX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1993-02-08 2021-06-11 TRUE TRUE
HLGAX.Close_Log Calc Log of log() -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1993-02-08 2021-06-11 TRUE FALSE
HLGAX.Volume_YoY Calc Year over Year Percent -1.00 1993-02-08 2021-06-11 TRUE TRUE
HLGAX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1993-02-08 2021-06-11 TRUE TRUE
HLGAX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1993-02-08 2021-06-11 TRUE TRUE
HLGAX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1993-02-08 2021-06-11 TRUE TRUE
HLGAX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1993-02-08 2021-06-11 TRUE TRUE
HLGAX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1993-02-08 2021-06-11 TRUE TRUE
HLGAX.Volume_Log Calc Log of log() -1.00 1993-02-08 2021-06-11 TRUE TRUE
HLGAX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1993-02-08 2021-06-11 TRUE TRUE
HLGAX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1993-02-08 2021-06-11 TRUE TRUE
HLGAX.Adjusted_YoY Calc Year over Year Percent -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1993-02-08 2021-06-11 TRUE FALSE
HLGAX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1993-02-08 2021-06-11 TRUE TRUE
HLGAX.Adjusted_Log Calc Log of log() -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1993-02-08 2021-06-11 FALSE FALSE
HLGAX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1993-02-08 2021-06-11 TRUE FALSE
FTRGX.Open_YoY Calc Year over Year Percent -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2014-06-18 2021-06-11 TRUE FALSE
FTRGX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2014-06-18 2021-06-11 TRUE TRUE
FTRGX.Open_Log Calc Log of log() -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2014-06-18 2021-06-11 TRUE FALSE
FTRGX.High_YoY Calc Year over Year Percent -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2014-06-18 2021-06-11 TRUE FALSE
FTRGX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2014-06-18 2021-06-11 TRUE TRUE
FTRGX.High_Log Calc Log of log() -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2014-06-18 2021-06-11 TRUE FALSE
FTRGX.Low_YoY Calc Year over Year Percent -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2014-06-18 2021-06-11 TRUE FALSE
FTRGX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2014-06-18 2021-06-11 TRUE TRUE
FTRGX.Low_Log Calc Log of log() -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2014-06-18 2021-06-11 TRUE FALSE
FTRGX.Close_YoY Calc Year over Year Percent -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2014-06-18 2021-06-11 TRUE FALSE
FTRGX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2014-06-18 2021-06-11 TRUE TRUE
FTRGX.Close_Log Calc Log of log() -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2014-06-18 2021-06-11 TRUE FALSE
FTRGX.Volume_YoY Calc Year over Year Percent -1.00 2014-06-18 2021-06-11 TRUE TRUE
FTRGX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2014-06-18 2021-06-11 TRUE TRUE
FTRGX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2014-06-18 2021-06-11 TRUE TRUE
FTRGX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2014-06-18 2021-06-11 TRUE TRUE
FTRGX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2014-06-18 2021-06-11 TRUE TRUE
FTRGX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2014-06-18 2021-06-11 TRUE TRUE
FTRGX.Volume_Log Calc Log of log() -1.00 2014-06-18 2021-06-11 TRUE TRUE
FTRGX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2014-06-18 2021-06-11 TRUE TRUE
FTRGX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2014-06-18 2021-06-11 TRUE TRUE
FTRGX.Adjusted_YoY Calc Year over Year Percent -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2014-06-18 2021-06-11 TRUE FALSE
FTRGX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2014-06-18 2021-06-11 TRUE TRUE
FTRGX.Adjusted_Log Calc Log of log() -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2014-06-18 2021-06-11 FALSE FALSE
FTRGX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2014-06-18 2021-06-11 TRUE FALSE
THIIX.Open_YoY Calc Year over Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1996-07-05 2021-06-11 TRUE FALSE
THIIX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Open_Log Calc Log of log() -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1996-07-05 2021-06-11 TRUE FALSE
THIIX.High_YoY Calc Year over Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1996-07-05 2021-06-11 TRUE FALSE
THIIX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.High_Log Calc Log of log() -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1996-07-05 2021-06-11 TRUE FALSE
THIIX.Low_YoY Calc Year over Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1996-07-05 2021-06-11 TRUE FALSE
THIIX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Low_Log Calc Log of log() -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1996-07-05 2021-06-11 TRUE FALSE
THIIX.Close_YoY Calc Year over Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1996-07-05 2021-06-11 TRUE FALSE
THIIX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Close_Log Calc Log of log() -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1996-07-05 2021-06-11 TRUE FALSE
THIIX.Volume_YoY Calc Year over Year Percent -1.00 1996-07-05 2021-06-11 TRUE TRUE
THIIX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1996-07-05 2021-06-11 TRUE TRUE
THIIX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1996-07-05 2021-06-11 TRUE TRUE
THIIX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1996-07-05 2021-06-11 TRUE TRUE
THIIX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1996-07-05 2021-06-11 TRUE TRUE
THIIX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1996-07-05 2021-06-11 TRUE TRUE
THIIX.Volume_Log Calc Log of log() -1.00 1996-07-05 2021-06-11 TRUE TRUE
THIIX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1996-07-05 2021-06-11 TRUE TRUE
THIIX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1996-07-05 2021-06-11 TRUE TRUE
THIIX.Adjusted_YoY Calc Year over Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1996-07-05 2021-06-11 TRUE FALSE
THIIX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Adjusted_Log Calc Log of log() -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1996-07-05 2021-06-11 FALSE FALSE
THIIX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1996-07-05 2021-06-11 TRUE FALSE
PTTRX.Open_YoY Calc Year over Year Percent -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1987-05-11 2021-06-11 TRUE FALSE
PTTRX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1987-05-11 2021-06-11 TRUE FALSE
PTTRX.Open_Log Calc Log of log() -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1987-05-11 2021-06-11 TRUE FALSE
PTTRX.High_YoY Calc Year over Year Percent -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1987-05-11 2021-06-11 TRUE FALSE
PTTRX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1987-05-11 2021-06-11 TRUE FALSE
PTTRX.High_Log Calc Log of log() -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1987-05-11 2021-06-11 TRUE FALSE
PTTRX.Low_YoY Calc Year over Year Percent -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1987-05-11 2021-06-11 TRUE FALSE
PTTRX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1987-05-11 2021-06-11 TRUE FALSE
PTTRX.Low_Log Calc Log of log() -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1987-05-11 2021-06-11 TRUE FALSE
PTTRX.Close_YoY Calc Year over Year Percent -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1987-05-11 2021-06-11 TRUE FALSE
PTTRX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1987-05-11 2021-06-11 TRUE FALSE
PTTRX.Close_Log Calc Log of log() -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1987-05-11 2021-06-11 TRUE FALSE
PTTRX.Volume_YoY Calc Year over Year Percent -1.00 1987-05-11 2021-06-11 TRUE TRUE
PTTRX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1987-05-11 2021-06-11 TRUE TRUE
PTTRX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1987-05-11 2021-06-11 TRUE TRUE
PTTRX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1987-05-11 2021-06-11 TRUE TRUE
PTTRX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1987-05-11 2021-06-11 TRUE TRUE
PTTRX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1987-05-11 2021-06-11 TRUE TRUE
PTTRX.Volume_Log Calc Log of log() -1.00 1987-05-11 2021-06-11 TRUE TRUE
PTTRX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1987-05-11 2021-06-11 TRUE TRUE
PTTRX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1987-05-11 2021-06-11 TRUE TRUE
PTTRX.Adjusted_YoY Calc Year over Year Percent -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1987-05-11 2021-06-11 TRUE FALSE
PTTRX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1987-05-11 2021-06-11 TRUE FALSE
PTTRX.Adjusted_Log Calc Log of log() -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1987-05-11 2021-06-11 FALSE FALSE
PTTRX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1987-05-11 2021-06-11 TRUE FALSE
BFIGX.Open_YoY Calc Year over Year Percent -1.00 2015-01-23 2021-06-11 FALSE FALSE
BFIGX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2015-01-23 2021-06-11 TRUE FALSE
BFIGX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2015-01-23 2021-06-11 FALSE FALSE
BFIGX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2015-01-23 2021-06-11 TRUE TRUE
BFIGX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2015-01-23 2021-06-11 TRUE FALSE
BFIGX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2015-01-23 2021-06-11 TRUE TRUE
BFIGX.Open_Log Calc Log of log() -1.00 2015-01-23 2021-06-11 FALSE FALSE
BFIGX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2015-01-23 2021-06-11 FALSE FALSE
BFIGX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2015-01-23 2021-06-11 TRUE FALSE
BFIGX.High_YoY Calc Year over Year Percent -1.00 2015-01-23 2021-06-11 FALSE FALSE
BFIGX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2015-01-23 2021-06-11 TRUE FALSE
BFIGX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2015-01-23 2021-06-11 FALSE FALSE
BFIGX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2015-01-23 2021-06-11 TRUE TRUE
BFIGX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2015-01-23 2021-06-11 TRUE FALSE
BFIGX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2015-01-23 2021-06-11 TRUE TRUE
BFIGX.High_Log Calc Log of log() -1.00 2015-01-23 2021-06-11 FALSE FALSE
BFIGX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2015-01-23 2021-06-11 FALSE FALSE
BFIGX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2015-01-23 2021-06-11 TRUE FALSE
BFIGX.Low_YoY Calc Year over Year Percent -1.00 2015-01-23 2021-06-11 FALSE FALSE
BFIGX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2015-01-23 2021-06-11 TRUE FALSE
BFIGX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2015-01-23 2021-06-11 FALSE FALSE
BFIGX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2015-01-23 2021-06-11 TRUE TRUE
BFIGX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2015-01-23 2021-06-11 TRUE FALSE
BFIGX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2015-01-23 2021-06-11 TRUE TRUE
BFIGX.Low_Log Calc Log of log() -1.00 2015-01-23 2021-06-11 FALSE FALSE
BFIGX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2015-01-23 2021-06-11 FALSE FALSE
BFIGX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2015-01-23 2021-06-11 TRUE FALSE
BFIGX.Close_YoY Calc Year over Year Percent -1.00 2015-01-23 2021-06-11 FALSE FALSE
BFIGX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2015-01-23 2021-06-11 TRUE FALSE
BFIGX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2015-01-23 2021-06-11 FALSE FALSE
BFIGX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2015-01-23 2021-06-11 TRUE TRUE
BFIGX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2015-01-23 2021-06-11 TRUE FALSE
BFIGX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2015-01-23 2021-06-11 TRUE TRUE
BFIGX.Close_Log Calc Log of log() -1.00 2015-01-23 2021-06-11 FALSE FALSE
BFIGX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2015-01-23 2021-06-11 FALSE FALSE
BFIGX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2015-01-23 2021-06-11 TRUE FALSE
BFIGX.Volume_YoY Calc Year over Year Percent -1.00 2015-01-23 2021-06-11 TRUE TRUE
BFIGX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2015-01-23 2021-06-11 TRUE TRUE
BFIGX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2015-01-23 2021-06-11 TRUE TRUE
BFIGX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2015-01-23 2021-06-11 TRUE TRUE
BFIGX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2015-01-23 2021-06-11 TRUE TRUE
BFIGX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2015-01-23 2021-06-11 TRUE TRUE
BFIGX.Volume_Log Calc Log of log() -1.00 2015-01-23 2021-06-11 TRUE TRUE
BFIGX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2015-01-23 2021-06-11 TRUE TRUE
BFIGX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2015-01-23 2021-06-11 TRUE TRUE
BFIGX.Adjusted_YoY Calc Year over Year Percent -1.00 2015-01-23 2021-06-11 FALSE FALSE
BFIGX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2015-01-23 2021-06-11 TRUE FALSE
BFIGX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2015-01-23 2021-06-11 FALSE FALSE
BFIGX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2015-01-23 2021-06-11 TRUE TRUE
BFIGX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2015-01-23 2021-06-11 TRUE FALSE
BFIGX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2015-01-23 2021-06-11 TRUE TRUE
BFIGX.Adjusted_Log Calc Log of log() -1.00 2015-01-23 2021-06-11 FALSE FALSE
BFIGX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2015-01-23 2021-06-11 TRUE FALSE
BFIGX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2015-01-23 2021-06-11 TRUE FALSE
VTWO.Open_YoY Calc Year over Year Percent -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Open_Log Calc Log of log() -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-09-22 2021-06-11 TRUE TRUE
VTWO.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-09-22 2021-06-11 TRUE TRUE
VTWO.High_YoY Calc Year over Year Percent -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.High_Log Calc Log of log() -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-09-22 2021-06-11 TRUE TRUE
VTWO.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-09-22 2021-06-11 TRUE FALSE
VTWO.Low_YoY Calc Year over Year Percent -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Low_Log Calc Log of log() -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-09-22 2021-06-11 TRUE TRUE
VTWO.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-09-22 2021-06-11 TRUE TRUE
VTWO.Close_YoY Calc Year over Year Percent -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Close_Log Calc Log of log() -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-09-22 2021-06-11 TRUE TRUE
VTWO.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-09-22 2021-06-11 TRUE TRUE
VTWO.Volume_YoY Calc Year over Year Percent -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Volume_Log Calc Log of log() -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Adjusted_YoY Calc Year over Year Percent -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Adjusted_Log Calc Log of log() -1.00 2010-09-22 2021-06-11 FALSE FALSE
VTWO.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-09-22 2021-06-11 TRUE TRUE
VTWO.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-09-22 2021-06-11 TRUE TRUE
EIFAX.Open_YoY Calc Year over Year Percent -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2008-03-17 2021-06-11 TRUE FALSE
EIFAX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Open_Log Calc Log of log() -1.00 2008-03-17 2021-06-11 TRUE TRUE
EIFAX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2008-03-17 2021-06-11 TRUE TRUE
EIFAX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2008-03-17 2021-06-11 TRUE FALSE
EIFAX.High_YoY Calc Year over Year Percent -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2008-03-17 2021-06-11 TRUE FALSE
EIFAX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.High_Log Calc Log of log() -1.00 2008-03-17 2021-06-11 TRUE TRUE
EIFAX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2008-03-17 2021-06-11 TRUE TRUE
EIFAX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2008-03-17 2021-06-11 TRUE FALSE
EIFAX.Low_YoY Calc Year over Year Percent -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2008-03-17 2021-06-11 TRUE FALSE
EIFAX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Low_Log Calc Log of log() -1.00 2008-03-17 2021-06-11 TRUE TRUE
EIFAX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2008-03-17 2021-06-11 TRUE TRUE
EIFAX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2008-03-17 2021-06-11 TRUE FALSE
EIFAX.Close_YoY Calc Year over Year Percent -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2008-03-17 2021-06-11 TRUE FALSE
EIFAX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Close_Log Calc Log of log() -1.00 2008-03-17 2021-06-11 TRUE TRUE
EIFAX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2008-03-17 2021-06-11 TRUE TRUE
EIFAX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2008-03-17 2021-06-11 TRUE FALSE
EIFAX.Volume_YoY Calc Year over Year Percent -1.00 2008-03-17 2021-06-11 TRUE TRUE
EIFAX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2008-03-17 2021-06-11 TRUE TRUE
EIFAX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2008-03-17 2021-06-11 TRUE TRUE
EIFAX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2008-03-17 2021-06-11 TRUE TRUE
EIFAX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2008-03-17 2021-06-11 TRUE TRUE
EIFAX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2008-03-17 2021-06-11 TRUE TRUE
EIFAX.Volume_Log Calc Log of log() -1.00 2008-03-17 2021-06-11 TRUE TRUE
EIFAX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2008-03-17 2021-06-11 TRUE TRUE
EIFAX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2008-03-17 2021-06-11 TRUE TRUE
EIFAX.Adjusted_YoY Calc Year over Year Percent -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2008-03-17 2021-06-11 FALSE FALSE
EIFAX.Adjusted_Log Calc Log of log() -1.00 2008-03-17 2021-06-11 TRUE TRUE
EIFAX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2008-03-17 2021-06-11 TRUE TRUE
EIFAX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2008-03-17 2021-06-11 TRUE TRUE
ASDAX.Open_YoY Calc Year over Year Percent -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Open_Log Calc Log of log() -1.00 2014-07-01 2021-06-11 TRUE FALSE
ASDAX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2014-07-01 2021-06-11 TRUE TRUE
ASDAX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2014-07-01 2021-06-11 TRUE FALSE
ASDAX.High_YoY Calc Year over Year Percent -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.High_Log Calc Log of log() -1.00 2014-07-01 2021-06-11 TRUE FALSE
ASDAX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2014-07-01 2021-06-11 TRUE TRUE
ASDAX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2014-07-01 2021-06-11 TRUE FALSE
ASDAX.Low_YoY Calc Year over Year Percent -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Low_Log Calc Log of log() -1.00 2014-07-01 2021-06-11 TRUE FALSE
ASDAX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2014-07-01 2021-06-11 TRUE TRUE
ASDAX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2014-07-01 2021-06-11 TRUE FALSE
ASDAX.Close_YoY Calc Year over Year Percent -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Close_Log Calc Log of log() -1.00 2014-07-01 2021-06-11 TRUE FALSE
ASDAX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2014-07-01 2021-06-11 TRUE TRUE
ASDAX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2014-07-01 2021-06-11 TRUE FALSE
ASDAX.Volume_YoY Calc Year over Year Percent -1.00 2014-07-01 2021-06-11 TRUE TRUE
ASDAX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2014-07-01 2021-06-11 TRUE TRUE
ASDAX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2014-07-01 2021-06-11 TRUE TRUE
ASDAX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2014-07-01 2021-06-11 TRUE TRUE
ASDAX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2014-07-01 2021-06-11 TRUE TRUE
ASDAX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2014-07-01 2021-06-11 TRUE TRUE
ASDAX.Volume_Log Calc Log of log() -1.00 2014-07-01 2021-06-11 TRUE TRUE
ASDAX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2014-07-01 2021-06-11 TRUE TRUE
ASDAX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2014-07-01 2021-06-11 TRUE TRUE
ASDAX.Adjusted_YoY Calc Year over Year Percent -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2014-07-01 2021-06-11 TRUE TRUE
ASDAX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2014-07-01 2021-06-11 FALSE FALSE
ASDAX.Adjusted_Log Calc Log of log() -1.00 2014-07-01 2021-06-11 TRUE TRUE
ASDAX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2014-07-01 2021-06-11 TRUE TRUE
ASDAX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2014-07-01 2021-06-11 TRUE TRUE
TRBUX.Open_YoY Calc Year over Year Percent -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2013-10-03 2021-06-11 TRUE FALSE
TRBUX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2013-10-03 2021-06-11 TRUE TRUE
TRBUX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.Open_Log Calc Log of log() -1.00 2013-10-03 2021-06-11 TRUE FALSE
TRBUX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2013-10-03 2021-06-11 TRUE TRUE
TRBUX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2013-10-03 2021-06-11 TRUE FALSE
TRBUX.High_YoY Calc Year over Year Percent -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2013-10-03 2021-06-11 TRUE FALSE
TRBUX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2013-10-03 2021-06-11 TRUE TRUE
TRBUX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.High_Log Calc Log of log() -1.00 2013-10-03 2021-06-11 TRUE FALSE
TRBUX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2013-10-03 2021-06-11 TRUE TRUE
TRBUX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2013-10-03 2021-06-11 TRUE FALSE
TRBUX.Low_YoY Calc Year over Year Percent -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2013-10-03 2021-06-11 TRUE FALSE
TRBUX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2013-10-03 2021-06-11 TRUE TRUE
TRBUX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.Low_Log Calc Log of log() -1.00 2013-10-03 2021-06-11 TRUE FALSE
TRBUX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2013-10-03 2021-06-11 TRUE TRUE
TRBUX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2013-10-03 2021-06-11 TRUE FALSE
TRBUX.Close_YoY Calc Year over Year Percent -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2013-10-03 2021-06-11 TRUE FALSE
TRBUX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2013-10-03 2021-06-11 TRUE TRUE
TRBUX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.Close_Log Calc Log of log() -1.00 2013-10-03 2021-06-11 TRUE FALSE
TRBUX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2013-10-03 2021-06-11 TRUE TRUE
TRBUX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2013-10-03 2021-06-11 TRUE FALSE
TRBUX.Volume_YoY Calc Year over Year Percent -1.00 2013-10-03 2021-06-11 TRUE TRUE
TRBUX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2013-10-03 2021-06-11 TRUE TRUE
TRBUX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2013-10-03 2021-06-11 TRUE TRUE
TRBUX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2013-10-03 2021-06-11 TRUE TRUE
TRBUX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2013-10-03 2021-06-11 TRUE TRUE
TRBUX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2013-10-03 2021-06-11 TRUE TRUE
TRBUX.Volume_Log Calc Log of log() -1.00 2013-10-03 2021-06-11 TRUE TRUE
TRBUX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2013-10-03 2021-06-11 TRUE TRUE
TRBUX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2013-10-03 2021-06-11 TRUE TRUE
TRBUX.Adjusted_YoY Calc Year over Year Percent -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2013-10-03 2021-06-11 TRUE TRUE
TRBUX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2013-10-03 2021-06-11 FALSE FALSE
TRBUX.Adjusted_Log Calc Log of log() -1.00 2013-10-03 2021-06-11 TRUE TRUE
TRBUX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2013-10-03 2021-06-11 TRUE TRUE
TRBUX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2013-10-03 2021-06-11 TRUE TRUE
PRWCX.Open_YoY Calc Year over Year Percent -1.00 1986-06-30 2021-06-11 FALSE FALSE
PRWCX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1986-06-30 2021-06-11 FALSE FALSE
PRWCX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1986-06-30 2021-06-11 TRUE FALSE
PRWCX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1986-06-30 2021-06-11 FALSE FALSE
PRWCX.Open_Log Calc Log of log() -1.00 1986-06-30 2021-06-11 TRUE FALSE
PRWCX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.High_YoY Calc Year over Year Percent -1.00 1986-06-30 2021-06-11 FALSE FALSE
PRWCX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1986-06-30 2021-06-11 FALSE FALSE
PRWCX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1986-06-30 2021-06-11 TRUE FALSE
PRWCX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1986-06-30 2021-06-11 FALSE FALSE
PRWCX.High_Log Calc Log of log() -1.00 1986-06-30 2021-06-11 TRUE FALSE
PRWCX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Low_YoY Calc Year over Year Percent -1.00 1986-06-30 2021-06-11 FALSE FALSE
PRWCX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1986-06-30 2021-06-11 FALSE FALSE
PRWCX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1986-06-30 2021-06-11 TRUE FALSE
PRWCX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1986-06-30 2021-06-11 FALSE FALSE
PRWCX.Low_Log Calc Log of log() -1.00 1986-06-30 2021-06-11 TRUE FALSE
PRWCX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Close_YoY Calc Year over Year Percent -1.00 1986-06-30 2021-06-11 FALSE FALSE
PRWCX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1986-06-30 2021-06-11 FALSE FALSE
PRWCX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1986-06-30 2021-06-11 TRUE FALSE
PRWCX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1986-06-30 2021-06-11 FALSE FALSE
PRWCX.Close_Log Calc Log of log() -1.00 1986-06-30 2021-06-11 TRUE FALSE
PRWCX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Volume_YoY Calc Year over Year Percent -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Volume_Log Calc Log of log() -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Adjusted_YoY Calc Year over Year Percent -1.00 1986-06-30 2021-06-11 FALSE FALSE
PRWCX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1986-06-30 2021-06-11 FALSE FALSE
PRWCX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1986-06-30 2021-06-11 TRUE FALSE
PRWCX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1986-06-30 2021-06-11 FALSE FALSE
PRWCX.Adjusted_Log Calc Log of log() -1.00 1986-06-30 2021-06-11 TRUE FALSE
PRWCX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1986-06-30 2021-06-11 TRUE TRUE
PRWCX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1986-06-30 2021-06-11 TRUE TRUE
ADOZX.Open_YoY Calc Year over Year Percent -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Open_Log Calc Log of log() -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-12-29 2021-06-11 TRUE TRUE
ADOZX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.High_YoY Calc Year over Year Percent -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.High_Log Calc Log of log() -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-12-29 2021-06-11 TRUE TRUE
ADOZX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Low_YoY Calc Year over Year Percent -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Low_Log Calc Log of log() -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-12-29 2021-06-11 TRUE TRUE
ADOZX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Close_YoY Calc Year over Year Percent -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Close_Log Calc Log of log() -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-12-29 2021-06-11 TRUE TRUE
ADOZX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Volume_YoY Calc Year over Year Percent -1.00 2010-12-29 2021-06-11 TRUE TRUE
ADOZX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-12-29 2021-06-11 TRUE TRUE
ADOZX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-12-29 2021-06-11 TRUE TRUE
ADOZX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-12-29 2021-06-11 TRUE TRUE
ADOZX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-12-29 2021-06-11 TRUE TRUE
ADOZX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-12-29 2021-06-11 TRUE TRUE
ADOZX.Volume_Log Calc Log of log() -1.00 2010-12-29 2021-06-11 TRUE TRUE
ADOZX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-12-29 2021-06-11 TRUE TRUE
ADOZX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-12-29 2021-06-11 TRUE TRUE
ADOZX.Adjusted_YoY Calc Year over Year Percent -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Adjusted_Log Calc Log of log() -1.00 2010-12-29 2021-06-11 FALSE FALSE
ADOZX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-12-29 2021-06-11 TRUE TRUE
ADOZX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-12-29 2021-06-11 FALSE FALSE
MERFX.Open_YoY Calc Year over Year Percent -1.00 1989-01-31 2021-06-11 FALSE FALSE
MERFX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1989-01-31 2021-06-11 FALSE FALSE
MERFX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1989-01-31 2021-06-11 TRUE FALSE
MERFX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1989-01-31 2021-06-11 TRUE FALSE
MERFX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1989-01-31 2021-06-11 FALSE FALSE
MERFX.Open_Log Calc Log of log() -1.00 1989-01-31 2021-06-11 TRUE FALSE
MERFX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.High_YoY Calc Year over Year Percent -1.00 1989-01-31 2021-06-11 FALSE FALSE
MERFX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1989-01-31 2021-06-11 FALSE FALSE
MERFX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1989-01-31 2021-06-11 TRUE FALSE
MERFX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1989-01-31 2021-06-11 TRUE FALSE
MERFX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1989-01-31 2021-06-11 FALSE FALSE
MERFX.High_Log Calc Log of log() -1.00 1989-01-31 2021-06-11 TRUE FALSE
MERFX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.Low_YoY Calc Year over Year Percent -1.00 1989-01-31 2021-06-11 FALSE FALSE
MERFX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1989-01-31 2021-06-11 FALSE FALSE
MERFX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1989-01-31 2021-06-11 TRUE FALSE
MERFX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1989-01-31 2021-06-11 TRUE FALSE
MERFX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1989-01-31 2021-06-11 FALSE FALSE
MERFX.Low_Log Calc Log of log() -1.00 1989-01-31 2021-06-11 TRUE FALSE
MERFX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.Close_YoY Calc Year over Year Percent -1.00 1989-01-31 2021-06-11 FALSE FALSE
MERFX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1989-01-31 2021-06-11 FALSE FALSE
MERFX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1989-01-31 2021-06-11 TRUE FALSE
MERFX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1989-01-31 2021-06-11 TRUE FALSE
MERFX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1989-01-31 2021-06-11 FALSE FALSE
MERFX.Close_Log Calc Log of log() -1.00 1989-01-31 2021-06-11 TRUE FALSE
MERFX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.Volume_YoY Calc Year over Year Percent -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.Volume_Log Calc Log of log() -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.Adjusted_YoY Calc Year over Year Percent -1.00 1989-01-31 2021-06-11 FALSE FALSE
MERFX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1989-01-31 2021-06-11 FALSE FALSE
MERFX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1989-01-31 2021-06-11 TRUE FALSE
MERFX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1989-01-31 2021-06-11 TRUE FALSE
MERFX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1989-01-31 2021-06-11 FALSE FALSE
MERFX.Adjusted_Log Calc Log of log() -1.00 1989-01-31 2021-06-11 TRUE FALSE
MERFX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1989-01-31 2021-06-11 TRUE TRUE
MERFX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1989-01-31 2021-06-11 TRUE TRUE
CMNIX.Open_YoY Calc Year over Year Percent -1.00 2000-05-10 2021-06-11 FALSE FALSE
CMNIX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-10 2021-06-11 TRUE FALSE
CMNIX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-10 2021-06-11 FALSE FALSE
CMNIX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-10 2021-06-11 FALSE FALSE
CMNIX.Open_Log Calc Log of log() -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.High_YoY Calc Year over Year Percent -1.00 2000-05-10 2021-06-11 FALSE FALSE
CMNIX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-10 2021-06-11 TRUE FALSE
CMNIX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-10 2021-06-11 FALSE FALSE
CMNIX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-10 2021-06-11 FALSE FALSE
CMNIX.High_Log Calc Log of log() -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Low_YoY Calc Year over Year Percent -1.00 2000-05-10 2021-06-11 FALSE FALSE
CMNIX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-10 2021-06-11 TRUE FALSE
CMNIX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-10 2021-06-11 FALSE FALSE
CMNIX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-10 2021-06-11 FALSE FALSE
CMNIX.Low_Log Calc Log of log() -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Close_YoY Calc Year over Year Percent -1.00 2000-05-10 2021-06-11 FALSE FALSE
CMNIX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-10 2021-06-11 TRUE FALSE
CMNIX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-10 2021-06-11 FALSE FALSE
CMNIX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-10 2021-06-11 FALSE FALSE
CMNIX.Close_Log Calc Log of log() -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Volume_YoY Calc Year over Year Percent -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Volume_Log Calc Log of log() -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Adjusted_YoY Calc Year over Year Percent -1.00 2000-05-10 2021-06-11 FALSE FALSE
CMNIX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-10 2021-06-11 FALSE FALSE
CMNIX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-10 2021-06-11 FALSE FALSE
CMNIX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-10 2021-06-11 FALSE FALSE
CMNIX.Adjusted_Log Calc Log of log() -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-10 2021-06-11 TRUE TRUE
CMNIX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-10 2021-06-11 TRUE TRUE
CIHEX.Open_YoY Calc Year over Year Percent -1.00 2015-01-02 2021-06-11 FALSE FALSE
CIHEX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2015-01-02 2021-06-11 TRUE FALSE
CIHEX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2015-01-02 2021-06-11 TRUE FALSE
CIHEX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2015-01-02 2021-06-11 FALSE FALSE
CIHEX.Open_Log Calc Log of log() -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.High_YoY Calc Year over Year Percent -1.00 2015-01-02 2021-06-11 FALSE FALSE
CIHEX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2015-01-02 2021-06-11 TRUE FALSE
CIHEX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2015-01-02 2021-06-11 TRUE FALSE
CIHEX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2015-01-02 2021-06-11 FALSE FALSE
CIHEX.High_Log Calc Log of log() -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Low_YoY Calc Year over Year Percent -1.00 2015-01-02 2021-06-11 FALSE FALSE
CIHEX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2015-01-02 2021-06-11 TRUE FALSE
CIHEX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2015-01-02 2021-06-11 TRUE FALSE
CIHEX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2015-01-02 2021-06-11 FALSE FALSE
CIHEX.Low_Log Calc Log of log() -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Close_YoY Calc Year over Year Percent -1.00 2015-01-02 2021-06-11 FALSE FALSE
CIHEX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2015-01-02 2021-06-11 TRUE FALSE
CIHEX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2015-01-02 2021-06-11 TRUE FALSE
CIHEX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2015-01-02 2021-06-11 FALSE FALSE
CIHEX.Close_Log Calc Log of log() -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Volume_YoY Calc Year over Year Percent -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Volume_Log Calc Log of log() -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Adjusted_YoY Calc Year over Year Percent -1.00 2015-01-02 2021-06-11 FALSE FALSE
CIHEX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2015-01-02 2021-06-11 FALSE FALSE
CIHEX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2015-01-02 2021-06-11 TRUE FALSE
CIHEX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2015-01-02 2021-06-11 FALSE FALSE
CIHEX.Adjusted_Log Calc Log of log() -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2015-01-02 2021-06-11 TRUE TRUE
CIHEX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2015-01-02 2021-06-11 TRUE TRUE
IMPCH_YoY Calc U.S. Imports of Goods by Customs Basis from China (Monthly, NSA) Year over Year Percent -1.00 1985-01-01 2021-04-01 FALSE FALSE
IMPCH_YoY4 Calc U.S. Imports of Goods by Customs Basis from China (Monthly, NSA) 4 Year over 4 Year Percent -1.00 1985-01-01 2021-04-01 FALSE FALSE
IMPCH_YoY5 Calc U.S. Imports of Goods by Customs Basis from China (Monthly, NSA) 5 Year over 5 Year Percent -1.00 1985-01-01 2021-04-01 FALSE FALSE
IMPCH_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) U.S. Imports of Goods by Customs Basis from China (Monthly, NSA) /period -1.00 1985-01-01 2021-04-01 TRUE FALSE
IMPCH_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) U.S. Imports of Goods by Customs Basis from China (Monthly, NSA) /period -1.00 1985-01-01 2021-04-01 FALSE FALSE
IMPCH_SmoothDer Calc Derivative of Smoothed U.S. Imports of Goods by Customs Basis from China (Monthly, NSA) /period -1.00 1985-01-01 2021-04-01 TRUE TRUE
IMPCH_Log Calc Log of U.S. Imports of Goods by Customs Basis from China (Monthly, NSA) log() -1.00 1985-01-01 2021-04-01 TRUE FALSE
IMPCH_mva200 Calc U.S. Imports of Goods by Customs Basis from China (Monthly, NSA) 200 Day MA 200 Day MA -1.00 1985-01-01 2021-04-01 FALSE FALSE
IMPCH_mva050 Calc U.S. Imports of Goods by Customs Basis from China (Monthly, NSA) 50 Day MA 50 Day MA -1.00 1985-01-01 2021-04-01 FALSE FALSE
EXPCH_YoY Calc U.S. Exports of Goods by F.A.S. Basis to China, Mainland (Monthly, NSA) Year over Year Percent -1.00 1985-01-01 2021-04-01 TRUE FALSE
EXPCH_YoY4 Calc U.S. Exports of Goods by F.A.S. Basis to China, Mainland (Monthly, NSA) 4 Year over 4 Year Percent -1.00 1985-01-01 2021-04-01 FALSE FALSE
EXPCH_YoY5 Calc U.S. Exports of Goods by F.A.S. Basis to China, Mainland (Monthly, NSA) 5 Year over 5 Year Percent -1.00 1985-01-01 2021-04-01 FALSE FALSE
EXPCH_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) U.S. Exports of Goods by F.A.S. Basis to China, Mainland (Monthly, NSA) /period -1.00 1985-01-01 2021-04-01 TRUE FALSE
EXPCH_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) U.S. Exports of Goods by F.A.S. Basis to China, Mainland (Monthly, NSA) /period -1.00 1985-01-01 2021-04-01 FALSE FALSE
EXPCH_SmoothDer Calc Derivative of Smoothed U.S. Exports of Goods by F.A.S. Basis to China, Mainland (Monthly, NSA) /period -1.00 1985-01-01 2021-04-01 FALSE FALSE
EXPCH_Log Calc Log of U.S. Exports of Goods by F.A.S. Basis to China, Mainland (Monthly, NSA) log() -1.00 1985-01-01 2021-04-01 TRUE FALSE
EXPCH_mva200 Calc U.S. Exports of Goods by F.A.S. Basis to China, Mainland (Monthly, NSA) 200 Day MA 200 Day MA -1.00 1985-01-01 2021-04-01 FALSE FALSE
EXPCH_mva050 Calc U.S. Exports of Goods by F.A.S. Basis to China, Mainland (Monthly, NSA) 50 Day MA 50 Day MA -1.00 1985-01-01 2021-04-01 FALSE FALSE
IMPMX_YoY Calc U.S. Imports of Goods by Customs Basis from Mexico (Monthly, NSA) Year over Year Percent -1.00 1985-01-01 2021-04-01 FALSE FALSE
IMPMX_YoY4 Calc U.S. Imports of Goods by Customs Basis from Mexico (Monthly, NSA) 4 Year over 4 Year Percent -1.00 1985-01-01 2021-04-01 TRUE FALSE
IMPMX_YoY5 Calc U.S. Imports of Goods by Customs Basis from Mexico (Monthly, NSA) 5 Year over 5 Year Percent -1.00 1985-01-01 2021-04-01 TRUE FALSE
IMPMX_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) U.S. Imports of Goods by Customs Basis from Mexico (Monthly, NSA) /period -1.00 1985-01-01 2021-04-01 TRUE TRUE
IMPMX_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) U.S. Imports of Goods by Customs Basis from Mexico (Monthly, NSA) /period -1.00 1985-01-01 2021-04-01 FALSE FALSE
IMPMX_SmoothDer Calc Derivative of Smoothed U.S. Imports of Goods by Customs Basis from Mexico (Monthly, NSA) /period -1.00 1985-01-01 2021-04-01 FALSE FALSE
IMPMX_Log Calc Log of U.S. Imports of Goods by Customs Basis from Mexico (Monthly, NSA) log() -1.00 1985-01-01 2021-04-01 TRUE FALSE
IMPMX_mva200 Calc U.S. Imports of Goods by Customs Basis from Mexico (Monthly, NSA) 200 Day MA 200 Day MA -1.00 1985-01-01 2021-04-01 TRUE TRUE
IMPMX_mva050 Calc U.S. Imports of Goods by Customs Basis from Mexico (Monthly, NSA) 50 Day MA 50 Day MA -1.00 1985-01-01 2021-04-01 FALSE FALSE
EXPMX_YoY Calc U.S. Exports of Goods by F.A.S. Basis to Mexico (Monthly, NSA) Year over Year Percent -1.00 1985-01-01 2021-04-01 FALSE FALSE
EXPMX_YoY4 Calc U.S. Exports of Goods by F.A.S. Basis to Mexico (Monthly, NSA) 4 Year over 4 Year Percent -1.00 1985-01-01 2021-04-01 TRUE FALSE
EXPMX_YoY5 Calc U.S. Exports of Goods by F.A.S. Basis to Mexico (Monthly, NSA) 5 Year over 5 Year Percent -1.00 1985-01-01 2021-04-01 TRUE FALSE
EXPMX_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) U.S. Exports of Goods by F.A.S. Basis to Mexico (Monthly, NSA) /period -1.00 1985-01-01 2021-04-01 FALSE FALSE
EXPMX_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) U.S. Exports of Goods by F.A.S. Basis to Mexico (Monthly, NSA) /period -1.00 1985-01-01 2021-04-01 FALSE FALSE
EXPMX_SmoothDer Calc Derivative of Smoothed U.S. Exports of Goods by F.A.S. Basis to Mexico (Monthly, NSA) /period -1.00 1985-01-01 2021-04-01 FALSE FALSE
EXPMX_Log Calc Log of U.S. Exports of Goods by F.A.S. Basis to Mexico (Monthly, NSA) log() -1.00 1985-01-01 2021-04-01 TRUE FALSE
EXPMX_mva200 Calc U.S. Exports of Goods by F.A.S. Basis to Mexico (Monthly, NSA) 200 Day MA 200 Day MA -1.00 1985-01-01 2021-04-01 TRUE TRUE
EXPMX_mva050 Calc U.S. Exports of Goods by F.A.S. Basis to Mexico (Monthly, NSA) 50 Day MA 50 Day MA -1.00 1985-01-01 2021-04-01 FALSE FALSE
HSN1FNSA_YoY Calc New One Family Houses Sold: United States (Monthly, NSA) Year over Year Percent -1.00 1963-01-01 2021-04-01 FALSE FALSE
HSN1FNSA_YoY4 Calc New One Family Houses Sold: United States (Monthly, NSA) 4 Year over 4 Year Percent -1.00 1963-01-01 2021-04-01 TRUE FALSE
HSN1FNSA_YoY5 Calc New One Family Houses Sold: United States (Monthly, NSA) 5 Year over 5 Year Percent -1.00 1963-01-01 2021-04-01 FALSE FALSE
HSN1FNSA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) New One Family Houses Sold: United States (Monthly, NSA) /period -1.00 1963-01-01 2021-04-01 FALSE FALSE
HSN1FNSA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) New One Family Houses Sold: United States (Monthly, NSA) /period -1.00 1963-01-01 2021-04-01 FALSE FALSE
HSN1FNSA_SmoothDer Calc Derivative of Smoothed New One Family Houses Sold: United States (Monthly, NSA) /period -1.00 1963-01-01 2021-04-01 TRUE TRUE
HSN1FNSA_Log Calc Log of New One Family Houses Sold: United States (Monthly, NSA) log() -1.00 1963-01-01 2021-04-01 TRUE FALSE
HSN1FNSA_mva200 Calc New One Family Houses Sold: United States (Monthly, NSA) 200 Day MA 200 Day MA -1.00 1963-01-01 2021-04-01 TRUE TRUE
HSN1FNSA_mva050 Calc New One Family Houses Sold: United States (Monthly, NSA) 50 Day MA 50 Day MA -1.00 1963-01-01 2021-04-01 FALSE FALSE
HNFSUSNSA_YoY Calc New One Family Houses for Sale in the United States (Monthly, NSA) Year over Year Percent -1.00 1963-01-01 2021-04-01 TRUE TRUE
HNFSUSNSA_YoY4 Calc New One Family Houses for Sale in the United States (Monthly, NSA) 4 Year over 4 Year Percent -1.00 1963-01-01 2021-04-01 FALSE FALSE
HNFSUSNSA_YoY5 Calc New One Family Houses for Sale in the United States (Monthly, NSA) 5 Year over 5 Year Percent -1.00 1963-01-01 2021-04-01 TRUE FALSE
HNFSUSNSA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) New One Family Houses for Sale in the United States (Monthly, NSA) /period -1.00 1963-01-01 2021-04-01 FALSE FALSE
HNFSUSNSA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) New One Family Houses for Sale in the United States (Monthly, NSA) /period -1.00 1963-01-01 2021-04-01 FALSE FALSE
HNFSUSNSA_SmoothDer Calc Derivative of Smoothed New One Family Houses for Sale in the United States (Monthly, NSA) /period -1.00 1963-01-01 2021-04-01 FALSE FALSE
HNFSUSNSA_Log Calc Log of New One Family Houses for Sale in the United States (Monthly, NSA) log() -1.00 1963-01-01 2021-04-01 TRUE TRUE
HNFSUSNSA_mva200 Calc New One Family Houses for Sale in the United States (Monthly, NSA) 200 Day MA 200 Day MA -1.00 1963-01-01 2021-04-01 TRUE TRUE
HNFSUSNSA_mva050 Calc New One Family Houses for Sale in the United States (Monthly, NSA) 50 Day MA 50 Day MA -1.00 1963-01-01 2021-04-01 TRUE TRUE
BUSLOANS_YoY Calc Commercial and Industrial Loans, All Commercial Banks (Monthly, SA) Year over Year Percent -1.00 1947-01-01 2021-05-01 TRUE FALSE
BUSLOANS_YoY4 Calc Commercial and Industrial Loans, All Commercial Banks (Monthly, SA) 4 Year over 4 Year Percent -1.00 1947-01-01 2021-05-01 FALSE FALSE
BUSLOANS_YoY5 Calc Commercial and Industrial Loans, All Commercial Banks (Monthly, SA) 5 Year over 5 Year Percent -1.00 1947-01-01 2021-05-01 FALSE FALSE
BUSLOANS_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Commercial and Industrial Loans, All Commercial Banks (Monthly, SA) /period -1.00 1947-01-01 2021-05-01 FALSE FALSE
BUSLOANS_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Commercial and Industrial Loans, All Commercial Banks (Monthly, SA) /period -1.00 1947-01-01 2021-05-01 FALSE FALSE
BUSLOANS_SmoothDer Calc Derivative of Smoothed Commercial and Industrial Loans, All Commercial Banks (Monthly, SA) /period -1.00 1947-01-01 2021-05-01 TRUE TRUE
BUSLOANS_Log Calc Log of Commercial and Industrial Loans, All Commercial Banks (Monthly, SA) log() -1.00 1947-01-01 2021-05-01 TRUE FALSE
BUSLOANS_mva200 Calc Commercial and Industrial Loans, All Commercial Banks (Monthly, SA) 200 Day MA 200 Day MA -1.00 1947-01-01 2021-05-01 FALSE FALSE
BUSLOANS_mva050 Calc Commercial and Industrial Loans, All Commercial Banks (Monthly, SA) 50 Day MA 50 Day MA -1.00 1947-01-01 2021-05-01 FALSE FALSE
TOTCI_YoY Calc Commercial and Industrial Loans, All Commercial Banks (Weekly, SA) Year over Year Percent -1.00 1973-01-03 2021-06-02 TRUE FALSE
TOTCI_YoY4 Calc Commercial and Industrial Loans, All Commercial Banks (Weekly, SA) 4 Year over 4 Year Percent -1.00 1973-01-03 2021-06-02 FALSE FALSE
TOTCI_YoY5 Calc Commercial and Industrial Loans, All Commercial Banks (Weekly, SA) 5 Year over 5 Year Percent -1.00 1973-01-03 2021-06-02 FALSE FALSE
TOTCI_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Commercial and Industrial Loans, All Commercial Banks (Weekly, SA) /period -1.00 1973-01-03 2021-06-02 FALSE FALSE
TOTCI_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Commercial and Industrial Loans, All Commercial Banks (Weekly, SA) /period -1.00 1973-01-03 2021-06-02 FALSE FALSE
TOTCI_SmoothDer Calc Derivative of Smoothed Commercial and Industrial Loans, All Commercial Banks (Weekly, SA) /period -1.00 1973-01-03 2021-06-02 TRUE TRUE
TOTCI_Log Calc Log of Commercial and Industrial Loans, All Commercial Banks (Weekly, SA) log() -1.00 1973-01-03 2021-06-02 FALSE FALSE
TOTCI_mva200 Calc Commercial and Industrial Loans, All Commercial Banks (Weekly, SA) 200 Day MA 200 Day MA -1.00 1973-01-03 2021-06-02 FALSE FALSE
TOTCI_mva050 Calc Commercial and Industrial Loans, All Commercial Banks (Weekly, SA) 50 Day MA 50 Day MA -1.00 1973-01-03 2021-06-02 FALSE FALSE
BUSLOANSNSA_YoY Calc Commercial and Industrial Loans, All Commercial Banks (Monthly, NSA) Year over Year Percent -1.00 1947-01-01 2021-05-01 TRUE FALSE
BUSLOANSNSA_YoY4 Calc Commercial and Industrial Loans, All Commercial Banks (Monthly, NSA) 4 Year over 4 Year Percent -1.00 1947-01-01 2021-05-01 TRUE FALSE
BUSLOANSNSA_YoY5 Calc Commercial and Industrial Loans, All Commercial Banks (Monthly, NSA) 5 Year over 5 Year Percent -1.00 1947-01-01 2021-05-01 TRUE FALSE
BUSLOANSNSA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Commercial and Industrial Loans, All Commercial Banks (Monthly, NSA) /period -1.00 1947-01-01 2021-05-01 FALSE FALSE
BUSLOANSNSA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Commercial and Industrial Loans, All Commercial Banks (Monthly, NSA) /period -1.00 1947-01-01 2021-05-01 FALSE FALSE
BUSLOANSNSA_SmoothDer Calc Derivative of Smoothed Commercial and Industrial Loans, All Commercial Banks (Monthly, NSA) /period -1.00 1947-01-01 2021-05-01 TRUE TRUE
BUSLOANSNSA_Log Calc Log of Commercial and Industrial Loans, All Commercial Banks (Monthly, NSA) log() -1.00 1947-01-01 2021-05-01 TRUE FALSE
BUSLOANSNSA_mva200 Calc Commercial and Industrial Loans, All Commercial Banks (Monthly, NSA) 200 Day MA 200 Day MA -1.00 1947-01-01 2021-05-01 FALSE FALSE
BUSLOANSNSA_mva050 Calc Commercial and Industrial Loans, All Commercial Banks (Monthly, NSA) 50 Day MA 50 Day MA -1.00 1947-01-01 2021-05-01 FALSE FALSE
REALLNNSA_YoY Calc Real Estate Loans, All Commercial Banks (Monthly, NSA) Year over Year Percent -1.00 1947-01-01 2021-05-01 FALSE FALSE
REALLNNSA_YoY4 Calc Real Estate Loans, All Commercial Banks (Monthly, NSA) 4 Year over 4 Year Percent -1.00 1947-01-01 2021-05-01 FALSE FALSE
REALLNNSA_YoY5 Calc Real Estate Loans, All Commercial Banks (Monthly, NSA) 5 Year over 5 Year Percent -1.00 1947-01-01 2021-05-01 FALSE FALSE
REALLNNSA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Real Estate Loans, All Commercial Banks (Monthly, NSA) /period -1.00 1947-01-01 2021-05-01 TRUE FALSE
REALLNNSA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Real Estate Loans, All Commercial Banks (Monthly, NSA) /period -1.00 1947-01-01 2021-05-01 FALSE FALSE
REALLNNSA_SmoothDer Calc Derivative of Smoothed Real Estate Loans, All Commercial Banks (Monthly, NSA) /period -1.00 1947-01-01 2021-05-01 TRUE TRUE
REALLNNSA_Log Calc Log of Real Estate Loans, All Commercial Banks (Monthly, NSA) log() -1.00 1947-01-01 2021-05-01 TRUE FALSE
REALLNNSA_mva200 Calc Real Estate Loans, All Commercial Banks (Monthly, NSA) 200 Day MA 200 Day MA -1.00 1947-01-01 2021-05-01 FALSE FALSE
REALLNNSA_mva050 Calc Real Estate Loans, All Commercial Banks (Monthly, NSA) 50 Day MA 50 Day MA -1.00 1947-01-01 2021-05-01 FALSE FALSE
REALLN_YoY Calc Real Estate Loans, All Commercial Banks (Monthly, SA) Year over Year Percent -1.00 1947-01-01 2021-05-01 FALSE FALSE
REALLN_YoY4 Calc Real Estate Loans, All Commercial Banks (Monthly, SA) 4 Year over 4 Year Percent -1.00 1947-01-01 2021-05-01 FALSE FALSE
REALLN_YoY5 Calc Real Estate Loans, All Commercial Banks (Monthly, SA) 5 Year over 5 Year Percent -1.00 1947-01-01 2021-05-01 FALSE FALSE
REALLN_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Real Estate Loans, All Commercial Banks (Monthly, SA) /period -1.00 1947-01-01 2021-05-01 FALSE FALSE
REALLN_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Real Estate Loans, All Commercial Banks (Monthly, SA) /period -1.00 1947-01-01 2021-05-01 FALSE FALSE
REALLN_SmoothDer Calc Derivative of Smoothed Real Estate Loans, All Commercial Banks (Monthly, SA) /period -1.00 1947-01-01 2021-05-01 TRUE FALSE
REALLN_Log Calc Log of Real Estate Loans, All Commercial Banks (Monthly, SA) log() -1.00 1947-01-01 2021-05-01 TRUE FALSE
REALLN_mva200 Calc Real Estate Loans, All Commercial Banks (Monthly, SA) 200 Day MA 200 Day MA -1.00 1947-01-01 2021-05-01 FALSE FALSE
REALLN_mva050 Calc Real Estate Loans, All Commercial Banks (Monthly, SA) 50 Day MA 50 Day MA -1.00 1947-01-01 2021-05-01 FALSE FALSE
RELACBW027NBOG_YoY Calc Real Estate Loans, All Commercial Banks (Weekly, NSA) Year over Year Percent -1.00 1973-01-03 2021-06-02 FALSE FALSE
RELACBW027NBOG_YoY4 Calc Real Estate Loans, All Commercial Banks (Weekly, NSA) 4 Year over 4 Year Percent -1.00 1973-01-03 2021-06-02 FALSE FALSE
RELACBW027NBOG_YoY5 Calc Real Estate Loans, All Commercial Banks (Weekly, NSA) 5 Year over 5 Year Percent -1.00 1973-01-03 2021-06-02 FALSE FALSE
RELACBW027NBOG_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Real Estate Loans, All Commercial Banks (Weekly, NSA) /period -1.00 1973-01-03 2021-06-02 TRUE FALSE
RELACBW027NBOG_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Real Estate Loans, All Commercial Banks (Weekly, NSA) /period -1.00 1973-01-03 2021-06-02 FALSE FALSE
RELACBW027NBOG_SmoothDer Calc Derivative of Smoothed Real Estate Loans, All Commercial Banks (Weekly, NSA) /period -1.00 1973-01-03 2021-06-02 TRUE TRUE
RELACBW027NBOG_Log Calc Log of Real Estate Loans, All Commercial Banks (Weekly, NSA) log() -1.00 1973-01-03 2021-06-02 FALSE FALSE
RELACBW027NBOG_mva200 Calc Real Estate Loans, All Commercial Banks (Weekly, NSA) 200 Day MA 200 Day MA -1.00 1973-01-03 2021-06-02 FALSE FALSE
RELACBW027NBOG_mva050 Calc Real Estate Loans, All Commercial Banks (Weekly, NSA) 50 Day MA 50 Day MA -1.00 1973-01-03 2021-06-02 FALSE FALSE
RELACBW027SBOG_YoY Calc Real Estate Loans, All Commercial Banks (Weekly, SA) Year over Year Percent -1.00 1973-01-03 2021-06-02 FALSE FALSE
RELACBW027SBOG_YoY4 Calc Real Estate Loans, All Commercial Banks (Weekly, SA) 4 Year over 4 Year Percent -1.00 1973-01-03 2021-06-02 FALSE FALSE
RELACBW027SBOG_YoY5 Calc Real Estate Loans, All Commercial Banks (Weekly, SA) 5 Year over 5 Year Percent -1.00 1973-01-03 2021-06-02 FALSE FALSE
RELACBW027SBOG_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Real Estate Loans, All Commercial Banks (Weekly, SA) /period -1.00 1973-01-03 2021-06-02 FALSE FALSE
RELACBW027SBOG_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Real Estate Loans, All Commercial Banks (Weekly, SA) /period -1.00 1973-01-03 2021-06-02 FALSE FALSE
RELACBW027SBOG_SmoothDer Calc Derivative of Smoothed Real Estate Loans, All Commercial Banks (Weekly, SA) /period -1.00 1973-01-03 2021-06-02 FALSE FALSE
RELACBW027SBOG_Log Calc Log of Real Estate Loans, All Commercial Banks (Weekly, SA) log() -1.00 1973-01-03 2021-06-02 FALSE FALSE
RELACBW027SBOG_mva200 Calc Real Estate Loans, All Commercial Banks (Weekly, SA) 200 Day MA 200 Day MA -1.00 1973-01-03 2021-06-02 FALSE FALSE
RELACBW027SBOG_mva050 Calc Real Estate Loans, All Commercial Banks (Weekly, SA) 50 Day MA 50 Day MA -1.00 1973-01-03 2021-06-02 FALSE FALSE
RREACBM027NBOG_YoY Calc Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, NSA) Year over Year Percent -1.00 2004-06-01 2021-05-01 FALSE FALSE
RREACBM027NBOG_YoY4 Calc Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, NSA) 4 Year over 4 Year Percent -1.00 2004-06-01 2021-05-01 FALSE FALSE
RREACBM027NBOG_YoY5 Calc Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, NSA) 5 Year over 5 Year Percent -1.00 2004-06-01 2021-05-01 FALSE FALSE
RREACBM027NBOG_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, NSA) /period -1.00 2004-06-01 2021-05-01 FALSE FALSE
RREACBM027NBOG_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, NSA) /period -1.00 2004-06-01 2021-05-01 FALSE FALSE
RREACBM027NBOG_SmoothDer Calc Derivative of Smoothed Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, NSA) /period -1.00 2004-06-01 2021-05-01 TRUE TRUE
RREACBM027NBOG_Log Calc Log of Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, NSA) log() -1.00 2004-06-01 2021-05-01 TRUE FALSE
RREACBM027NBOG_mva200 Calc Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, NSA) 200 Day MA 200 Day MA -1.00 2004-06-01 2021-05-01 FALSE FALSE
RREACBM027NBOG_mva050 Calc Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, NSA) 50 Day MA 50 Day MA -1.00 2004-06-01 2021-05-01 FALSE FALSE
RREACBM027SBOG_YoY Calc Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, SA) Year over Year Percent -1.00 2004-06-01 2021-05-01 FALSE FALSE
RREACBM027SBOG_YoY4 Calc Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, SA) 4 Year over 4 Year Percent -1.00 2004-06-01 2021-05-01 FALSE FALSE
RREACBM027SBOG_YoY5 Calc Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, SA) 5 Year over 5 Year Percent -1.00 2004-06-01 2021-05-01 FALSE FALSE
RREACBM027SBOG_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, SA) /period -1.00 2004-06-01 2021-05-01 FALSE FALSE
RREACBM027SBOG_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, SA) /period -1.00 2004-06-01 2021-05-01 FALSE FALSE
RREACBM027SBOG_SmoothDer Calc Derivative of Smoothed Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, SA) /period -1.00 2004-06-01 2021-05-01 TRUE TRUE
RREACBM027SBOG_Log Calc Log of Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, SA) log() -1.00 2004-06-01 2021-05-01 TRUE FALSE
RREACBM027SBOG_mva200 Calc Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, SA) 200 Day MA 200 Day MA -1.00 2004-06-01 2021-05-01 FALSE FALSE
RREACBM027SBOG_mva050 Calc Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Monthly, SA) 50 Day MA 50 Day MA -1.00 2004-06-01 2021-05-01 FALSE FALSE
RREACBW027SBOG_YoY Calc Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, SA) Year over Year Percent -1.00 2004-06-02 2021-06-02 FALSE FALSE
RREACBW027SBOG_YoY4 Calc Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, SA) 4 Year over 4 Year Percent -1.00 2004-06-02 2021-06-02 FALSE FALSE
RREACBW027SBOG_YoY5 Calc Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, SA) 5 Year over 5 Year Percent -1.00 2004-06-02 2021-06-02 FALSE FALSE
RREACBW027SBOG_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, SA) /period -1.00 2004-06-02 2021-06-02 FALSE FALSE
RREACBW027SBOG_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, SA) /period -1.00 2004-06-02 2021-06-02 FALSE FALSE
RREACBW027SBOG_SmoothDer Calc Derivative of Smoothed Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, SA) /period -1.00 2004-06-02 2021-06-02 FALSE FALSE
RREACBW027SBOG_Log Calc Log of Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, SA) log() -1.00 2004-06-02 2021-06-02 FALSE FALSE
RREACBW027SBOG_mva200 Calc Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, SA) 200 Day MA 200 Day MA -1.00 2004-06-02 2021-06-02 FALSE FALSE
RREACBW027SBOG_mva050 Calc Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, SA) 50 Day MA 50 Day MA -1.00 2004-06-02 2021-06-02 FALSE FALSE
RREACBW027NBOG_YoY Calc Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, NSA) Year over Year Percent -1.00 2004-06-02 2021-06-02 FALSE FALSE
RREACBW027NBOG_YoY4 Calc Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, NSA) 4 Year over 4 Year Percent -1.00 2004-06-02 2021-06-02 FALSE FALSE
RREACBW027NBOG_YoY5 Calc Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, NSA) 5 Year over 5 Year Percent -1.00 2004-06-02 2021-06-02 FALSE FALSE
RREACBW027NBOG_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, NSA) /period -1.00 2004-06-02 2021-06-02 FALSE FALSE
RREACBW027NBOG_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, NSA) /period -1.00 2004-06-02 2021-06-02 FALSE FALSE
RREACBW027NBOG_SmoothDer Calc Derivative of Smoothed Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, NSA) /period -1.00 2004-06-02 2021-06-02 TRUE TRUE
RREACBW027NBOG_Log Calc Log of Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, NSA) log() -1.00 2004-06-02 2021-06-02 FALSE FALSE
RREACBW027NBOG_mva200 Calc Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, NSA) 200 Day MA 200 Day MA -1.00 2004-06-02 2021-06-02 FALSE FALSE
RREACBW027NBOG_mva050 Calc Real Estate Loans: Residential Real Estate Loans, All Commercial Banks (Weekly, NSA) 50 Day MA 50 Day MA -1.00 2004-06-02 2021-06-02 FALSE FALSE
MORTGAGE30US_YoY Calc 30-Year Fixed Rate Mortgage Average in the United States Year over Year Percent -1.00 1971-04-02 2021-06-10 FALSE FALSE
MORTGAGE30US_YoY4 Calc 30-Year Fixed Rate Mortgage Average in the United States 4 Year over 4 Year Percent -1.00 1971-04-02 2021-06-10 FALSE FALSE
MORTGAGE30US_YoY5 Calc 30-Year Fixed Rate Mortgage Average in the United States 5 Year over 5 Year Percent -1.00 1971-04-02 2021-06-10 TRUE FALSE
MORTGAGE30US_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) 30-Year Fixed Rate Mortgage Average in the United States /period -1.00 1971-04-02 2021-06-10 TRUE TRUE
MORTGAGE30US_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) 30-Year Fixed Rate Mortgage Average in the United States /period -1.00 1971-04-02 2021-06-10 FALSE FALSE
MORTGAGE30US_SmoothDer Calc Derivative of Smoothed 30-Year Fixed Rate Mortgage Average in the United States /period -1.00 1971-04-02 2021-06-10 TRUE TRUE
MORTGAGE30US_Log Calc Log of 30-Year Fixed Rate Mortgage Average in the United States log() -1.00 1971-04-02 2021-06-10 FALSE FALSE
MORTGAGE30US_mva200 Calc 30-Year Fixed Rate Mortgage Average in the United States 200 Day MA 200 Day MA -1.00 1971-04-02 2021-06-10 TRUE FALSE
MORTGAGE30US_mva050 Calc 30-Year Fixed Rate Mortgage Average in the United States 50 Day MA 50 Day MA -1.00 1971-04-02 2021-06-10 FALSE FALSE
CONSUMERNSA_YoY Calc Consumer Loans, All Commercial Banks Year over Year Percent -1.00 1947-01-01 2021-05-01 FALSE FALSE
CONSUMERNSA_YoY4 Calc Consumer Loans, All Commercial Banks 4 Year over 4 Year Percent -1.00 1947-01-01 2021-05-01 FALSE FALSE
CONSUMERNSA_YoY5 Calc Consumer Loans, All Commercial Banks 5 Year over 5 Year Percent -1.00 1947-01-01 2021-05-01 FALSE FALSE
CONSUMERNSA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Consumer Loans, All Commercial Banks /period -1.00 1947-01-01 2021-05-01 TRUE TRUE
CONSUMERNSA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Consumer Loans, All Commercial Banks /period -1.00 1947-01-01 2021-05-01 FALSE FALSE
CONSUMERNSA_SmoothDer Calc Derivative of Smoothed Consumer Loans, All Commercial Banks /period -1.00 1947-01-01 2021-05-01 FALSE FALSE
CONSUMERNSA_Log Calc Log of Consumer Loans, All Commercial Banks log() -1.00 1947-01-01 2021-05-01 TRUE FALSE
CONSUMERNSA_mva200 Calc Consumer Loans, All Commercial Banks 200 Day MA 200 Day MA -1.00 1947-01-01 2021-05-01 FALSE FALSE
CONSUMERNSA_mva050 Calc Consumer Loans, All Commercial Banks 50 Day MA 50 Day MA -1.00 1947-01-01 2021-05-01 TRUE FALSE
TOTLLNSA_YoY Calc Loans and Leases in Bank Credit, All Commercial Banks Year over Year Percent -1.00 1973-01-03 2021-06-02 TRUE FALSE
TOTLLNSA_YoY4 Calc Loans and Leases in Bank Credit, All Commercial Banks 4 Year over 4 Year Percent -1.00 1973-01-03 2021-06-02 FALSE FALSE
TOTLLNSA_YoY5 Calc Loans and Leases in Bank Credit, All Commercial Banks 5 Year over 5 Year Percent -1.00 1973-01-03 2021-06-02 FALSE FALSE
TOTLLNSA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Loans and Leases in Bank Credit, All Commercial Banks /period -1.00 1973-01-03 2021-06-02 TRUE FALSE
TOTLLNSA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Loans and Leases in Bank Credit, All Commercial Banks /period -1.00 1973-01-03 2021-06-02 FALSE FALSE
TOTLLNSA_SmoothDer Calc Derivative of Smoothed Loans and Leases in Bank Credit, All Commercial Banks /period -1.00 1973-01-03 2021-06-02 TRUE TRUE
TOTLLNSA_Log Calc Log of Loans and Leases in Bank Credit, All Commercial Banks log() -1.00 1973-01-03 2021-06-02 TRUE FALSE
TOTLLNSA_mva200 Calc Loans and Leases in Bank Credit, All Commercial Banks 200 Day MA 200 Day MA -1.00 1973-01-03 2021-06-02 FALSE FALSE
TOTLLNSA_mva050 Calc Loans and Leases in Bank Credit, All Commercial Banks 50 Day MA 50 Day MA -1.00 1973-01-03 2021-06-02 TRUE FALSE
DPSACBW027SBOG_YoY Calc Deposits, All Commercial Banks Year over Year Percent -1.00 1973-01-03 2021-06-02 FALSE FALSE
DPSACBW027SBOG_YoY4 Calc Deposits, All Commercial Banks 4 Year over 4 Year Percent -1.00 1973-01-03 2021-06-02 FALSE FALSE
DPSACBW027SBOG_YoY5 Calc Deposits, All Commercial Banks 5 Year over 5 Year Percent -1.00 1973-01-03 2021-06-02 FALSE FALSE
DPSACBW027SBOG_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Deposits, All Commercial Banks /period -1.00 1973-01-03 2021-06-02 TRUE TRUE
DPSACBW027SBOG_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Deposits, All Commercial Banks /period -1.00 1973-01-03 2021-06-02 FALSE FALSE
DPSACBW027SBOG_SmoothDer Calc Derivative of Smoothed Deposits, All Commercial Banks /period -1.00 1973-01-03 2021-06-02 TRUE TRUE
DPSACBW027SBOG_Log Calc Log of Deposits, All Commercial Banks log() -1.00 1973-01-03 2021-06-02 FALSE FALSE
DPSACBW027SBOG_mva200 Calc Deposits, All Commercial Banks 200 Day MA 200 Day MA -1.00 1973-01-03 2021-06-02 TRUE TRUE
DPSACBW027SBOG_mva050 Calc Deposits, All Commercial Banks 50 Day MA 50 Day MA -1.00 1973-01-03 2021-06-02 TRUE TRUE
DRCLACBS_YoY Calc Delinquency Rate on Consumer Loans, All Commercial Banks, SA Year over Year Percent -1.00 1987-01-01 2021-01-01 TRUE TRUE
DRCLACBS_YoY4 Calc Delinquency Rate on Consumer Loans, All Commercial Banks, SA 4 Year over 4 Year Percent -1.00 1987-01-01 2021-01-01 FALSE FALSE
DRCLACBS_YoY5 Calc Delinquency Rate on Consumer Loans, All Commercial Banks, SA 5 Year over 5 Year Percent -1.00 1987-01-01 2021-01-01 FALSE FALSE
DRCLACBS_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Delinquency Rate on Consumer Loans, All Commercial Banks, SA /period -1.00 1987-01-01 2021-01-01 TRUE FALSE
DRCLACBS_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Delinquency Rate on Consumer Loans, All Commercial Banks, SA /period -1.00 1987-01-01 2021-01-01 FALSE FALSE
DRCLACBS_SmoothDer Calc Derivative of Smoothed Delinquency Rate on Consumer Loans, All Commercial Banks, SA /period -1.00 1987-01-01 2021-01-01 FALSE FALSE
DRCLACBS_Log Calc Log of Delinquency Rate on Consumer Loans, All Commercial Banks, SA log() -1.00 1987-01-01 2021-01-01 TRUE FALSE
DRCLACBS_mva200 Calc Delinquency Rate on Consumer Loans, All Commercial Banks, SA 200 Day MA 200 Day MA -1.00 1987-01-01 2021-01-01 FALSE FALSE
DRCLACBS_mva050 Calc Delinquency Rate on Consumer Loans, All Commercial Banks, SA 50 Day MA 50 Day MA -1.00 1987-01-01 2021-01-01 TRUE FALSE
TOTCINSA_YoY Calc Commercial and Industrial Loans, All Commercial Banks (Weekly, NSA) Year over Year Percent -1.00 1973-01-03 2021-06-02 TRUE FALSE
TOTCINSA_YoY4 Calc Commercial and Industrial Loans, All Commercial Banks (Weekly, NSA) 4 Year over 4 Year Percent -1.00 1973-01-03 2021-06-02 FALSE FALSE
TOTCINSA_YoY5 Calc Commercial and Industrial Loans, All Commercial Banks (Weekly, NSA) 5 Year over 5 Year Percent -1.00 1973-01-03 2021-06-02 FALSE FALSE
TOTCINSA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Commercial and Industrial Loans, All Commercial Banks (Weekly, NSA) /period -1.00 1973-01-03 2021-06-02 FALSE FALSE
TOTCINSA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Commercial and Industrial Loans, All Commercial Banks (Weekly, NSA) /period -1.00 1973-01-03 2021-06-02 FALSE FALSE
TOTCINSA_SmoothDer Calc Derivative of Smoothed Commercial and Industrial Loans, All Commercial Banks (Weekly, NSA) /period -1.00 1973-01-03 2021-06-02 TRUE TRUE
TOTCINSA_Log Calc Log of Commercial and Industrial Loans, All Commercial Banks (Weekly, NSA) log() -1.00 1973-01-03 2021-06-02 FALSE FALSE
TOTCINSA_mva200 Calc Commercial and Industrial Loans, All Commercial Banks (Weekly, NSA) 200 Day MA 200 Day MA -1.00 1973-01-03 2021-06-02 FALSE FALSE
TOTCINSA_mva050 Calc Commercial and Industrial Loans, All Commercial Banks (Weekly, NSA) 50 Day MA 50 Day MA -1.00 1973-01-03 2021-06-02 FALSE FALSE
SRPSABSNNCB_YoY Calc Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) Year over Year Percent -1.00 1945-10-01 2021-01-01 TRUE FALSE
SRPSABSNNCB_YoY4 Calc Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) 4 Year over 4 Year Percent -1.00 1945-10-01 2021-01-01 TRUE TRUE
SRPSABSNNCB_YoY5 Calc Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) 5 Year over 5 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
SRPSABSNNCB_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 TRUE FALSE
SRPSABSNNCB_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
SRPSABSNNCB_SmoothDer Calc Derivative of Smoothed Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 TRUE TRUE
SRPSABSNNCB_Log Calc Log of Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) log() -1.00 1945-10-01 2021-01-01 TRUE TRUE
SRPSABSNNCB_mva200 Calc Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) 200 Day MA 200 Day MA -1.00 1945-10-01 2021-01-01 FALSE FALSE
SRPSABSNNCB_mva050 Calc Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) 50 Day MA 50 Day MA -1.00 1945-10-01 2021-01-01 TRUE FALSE
ASTLL_YoY Calc All sectors; total loans; liability, Level (NSA) Year over Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASTLL_YoY4 Calc All sectors; total loans; liability, Level (NSA) 4 Year over 4 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASTLL_YoY5 Calc All sectors; total loans; liability, Level (NSA) 5 Year over 5 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASTLL_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) All sectors; total loans; liability, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASTLL_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) All sectors; total loans; liability, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASTLL_SmoothDer Calc Derivative of Smoothed All sectors; total loans; liability, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASTLL_Log Calc Log of All sectors; total loans; liability, Level (NSA) log() -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASTLL_mva200 Calc All sectors; total loans; liability, Level (NSA) 200 Day MA 200 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASTLL_mva050 Calc All sectors; total loans; liability, Level (NSA) 50 Day MA 50 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
FBDILNECA_YoY Calc Domestic financial sectors; depository institution loans n.e.c.; asset, Level (NSA) Year over Year Percent -1.00 1945-10-01 2021-01-01 TRUE TRUE
FBDILNECA_YoY4 Calc Domestic financial sectors; depository institution loans n.e.c.; asset, Level (NSA) 4 Year over 4 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
FBDILNECA_YoY5 Calc Domestic financial sectors; depository institution loans n.e.c.; asset, Level (NSA) 5 Year over 5 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
FBDILNECA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Domestic financial sectors; depository institution loans n.e.c.; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
FBDILNECA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Domestic financial sectors; depository institution loans n.e.c.; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
FBDILNECA_SmoothDer Calc Derivative of Smoothed Domestic financial sectors; depository institution loans n.e.c.; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
FBDILNECA_Log Calc Log of Domestic financial sectors; depository institution loans n.e.c.; asset, Level (NSA) log() -1.00 1945-10-01 2021-01-01 TRUE TRUE
FBDILNECA_mva200 Calc Domestic financial sectors; depository institution loans n.e.c.; asset, Level (NSA) 200 Day MA 200 Day MA -1.00 1945-10-01 2021-01-01 TRUE FALSE
FBDILNECA_mva050 Calc Domestic financial sectors; depository institution loans n.e.c.; asset, Level (NSA) 50 Day MA 50 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASOLAL_YoY Calc All sectors; other loans and advances; liability, Level (NSA) Year over Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASOLAL_YoY4 Calc All sectors; other loans and advances; liability, Level (NSA) 4 Year over 4 Year Percent -1.00 1945-10-01 2021-01-01 TRUE FALSE
ASOLAL_YoY5 Calc All sectors; other loans and advances; liability, Level (NSA) 5 Year over 5 Year Percent -1.00 1945-10-01 2021-01-01 TRUE FALSE
ASOLAL_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) All sectors; other loans and advances; liability, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASOLAL_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) All sectors; other loans and advances; liability, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASOLAL_SmoothDer Calc Derivative of Smoothed All sectors; other loans and advances; liability, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASOLAL_Log Calc Log of All sectors; other loans and advances; liability, Level (NSA) log() -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASOLAL_mva200 Calc All sectors; other loans and advances; liability, Level (NSA) 200 Day MA 200 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASOLAL_mva050 Calc All sectors; other loans and advances; liability, Level (NSA) 50 Day MA 50 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASTMA_YoY Calc All sectors; total mortgages; asset, Level (NSA) Year over Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASTMA_YoY4 Calc All sectors; total mortgages; asset, Level (NSA) 4 Year over 4 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASTMA_YoY5 Calc All sectors; total mortgages; asset, Level (NSA) 5 Year over 5 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASTMA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) All sectors; total mortgages; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASTMA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) All sectors; total mortgages; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASTMA_SmoothDer Calc Derivative of Smoothed All sectors; total mortgages; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASTMA_Log Calc Log of All sectors; total mortgages; asset, Level (NSA) log() -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASTMA_mva200 Calc All sectors; total mortgages; asset, Level (NSA) 200 Day MA 200 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASTMA_mva050 Calc All sectors; total mortgages; asset, Level (NSA) 50 Day MA 50 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASHMA_YoY Calc All sectors; home mortgages; asset, Level (NSA) Year over Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASHMA_YoY4 Calc All sectors; home mortgages; asset, Level (NSA) 4 Year over 4 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASHMA_YoY5 Calc All sectors; home mortgages; asset, Level (NSA) 5 Year over 5 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASHMA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) All sectors; home mortgages; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASHMA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) All sectors; home mortgages; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASHMA_SmoothDer Calc Derivative of Smoothed All sectors; home mortgages; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASHMA_Log Calc Log of All sectors; home mortgages; asset, Level (NSA) log() -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASHMA_mva200 Calc All sectors; home mortgages; asset, Level (NSA) 200 Day MA 200 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASHMA_mva050 Calc All sectors; home mortgages; asset, Level (NSA) 50 Day MA 50 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASMRMA_YoY Calc All sectors; multifamily residential mortgages; asset, Level (NSA) Year over Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASMRMA_YoY4 Calc All sectors; multifamily residential mortgages; asset, Level (NSA) 4 Year over 4 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASMRMA_YoY5 Calc All sectors; multifamily residential mortgages; asset, Level (NSA) 5 Year over 5 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASMRMA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) All sectors; multifamily residential mortgages; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASMRMA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) All sectors; multifamily residential mortgages; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASMRMA_SmoothDer Calc Derivative of Smoothed All sectors; multifamily residential mortgages; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASMRMA_Log Calc Log of All sectors; multifamily residential mortgages; asset, Level (NSA) log() -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASMRMA_mva200 Calc All sectors; multifamily residential mortgages; asset, Level (NSA) 200 Day MA 200 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASMRMA_mva050 Calc All sectors; multifamily residential mortgages; asset, Level (NSA) 50 Day MA 50 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASCMA_YoY Calc All sectors; commercial mortgages; asset, Level (NSA) Year over Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASCMA_YoY4 Calc All sectors; commercial mortgages; asset, Level (NSA) 4 Year over 4 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASCMA_YoY5 Calc All sectors; commercial mortgages; asset, Level (NSA) 5 Year over 5 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASCMA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) All sectors; commercial mortgages; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASCMA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) All sectors; commercial mortgages; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASCMA_SmoothDer Calc Derivative of Smoothed All sectors; commercial mortgages; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASCMA_Log Calc Log of All sectors; commercial mortgages; asset, Level (NSA) log() -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASCMA_mva200 Calc All sectors; commercial mortgages; asset, Level (NSA) 200 Day MA 200 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASCMA_mva050 Calc All sectors; commercial mortgages; asset, Level (NSA) 50 Day MA 50 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASFMA_YoY Calc All sectors; farm mortgages; asset, Level (NSA) Year over Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASFMA_YoY4 Calc All sectors; farm mortgages; asset, Level (NSA) 4 Year over 4 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASFMA_YoY5 Calc All sectors; farm mortgages; asset, Level (NSA) 5 Year over 5 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASFMA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) All sectors; farm mortgages; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASFMA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) All sectors; farm mortgages; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASFMA_SmoothDer Calc Derivative of Smoothed All sectors; farm mortgages; asset, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASFMA_Log Calc Log of All sectors; farm mortgages; asset, Level (NSA) log() -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASFMA_mva200 Calc All sectors; farm mortgages; asset, Level (NSA) 200 Day MA 200 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASFMA_mva050 Calc All sectors; farm mortgages; asset, Level (NSA) 50 Day MA 50 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
CCLBSHNO_YoY Calc Households and nonprofit organizations; consumer credit; liability, Level (NSA) Year over Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
CCLBSHNO_YoY4 Calc Households and nonprofit organizations; consumer credit; liability, Level (NSA) 4 Year over 4 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
CCLBSHNO_YoY5 Calc Households and nonprofit organizations; consumer credit; liability, Level (NSA) 5 Year over 5 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
CCLBSHNO_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Households and nonprofit organizations; consumer credit; liability, Level (NSA) /period -1.00 1945-10-01 2021-01-01 TRUE FALSE
CCLBSHNO_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Households and nonprofit organizations; consumer credit; liability, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
CCLBSHNO_SmoothDer Calc Derivative of Smoothed Households and nonprofit organizations; consumer credit; liability, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
CCLBSHNO_Log Calc Log of Households and nonprofit organizations; consumer credit; liability, Level (NSA) log() -1.00 1945-10-01 2021-01-01 TRUE FALSE
CCLBSHNO_mva200 Calc Households and nonprofit organizations; consumer credit; liability, Level (NSA) 200 Day MA 200 Day MA -1.00 1945-10-01 2021-01-01 FALSE FALSE
CCLBSHNO_mva050 Calc Households and nonprofit organizations; consumer credit; liability, Level (NSA) 50 Day MA 50 Day MA -1.00 1945-10-01 2021-01-01 TRUE FALSE
FBDSILQ027S_YoY Calc Domestic financial sectors debt securities; liability, Level (NSA) Year over Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
FBDSILQ027S_YoY4 Calc Domestic financial sectors debt securities; liability, Level (NSA) 4 Year over 4 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
FBDSILQ027S_YoY5 Calc Domestic financial sectors debt securities; liability, Level (NSA) 5 Year over 5 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
FBDSILQ027S_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Domestic financial sectors debt securities; liability, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
FBDSILQ027S_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Domestic financial sectors debt securities; liability, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
FBDSILQ027S_SmoothDer Calc Derivative of Smoothed Domestic financial sectors debt securities; liability, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
FBDSILQ027S_Log Calc Log of Domestic financial sectors debt securities; liability, Level (NSA) log() -1.00 1945-10-01 2021-01-01 TRUE TRUE
FBDSILQ027S_mva200 Calc Domestic financial sectors debt securities; liability, Level (NSA) 200 Day MA 200 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
FBDSILQ027S_mva050 Calc Domestic financial sectors debt securities; liability, Level (NSA) 50 Day MA 50 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
FBLL_YoY Calc Domestic financial sectors loans; liability, Level (NSA) Year over Year Percent -1.00 1945-10-01 2021-01-01 TRUE TRUE
FBLL_YoY4 Calc Domestic financial sectors loans; liability, Level (NSA) 4 Year over 4 Year Percent -1.00 1945-10-01 2021-01-01 TRUE FALSE
FBLL_YoY5 Calc Domestic financial sectors loans; liability, Level (NSA) 5 Year over 5 Year Percent -1.00 1945-10-01 2021-01-01 TRUE FALSE
FBLL_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Domestic financial sectors loans; liability, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
FBLL_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Domestic financial sectors loans; liability, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
FBLL_SmoothDer Calc Derivative of Smoothed Domestic financial sectors loans; liability, Level (NSA) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
FBLL_Log Calc Log of Domestic financial sectors loans; liability, Level (NSA) log() -1.00 1945-10-01 2021-01-01 TRUE FALSE
FBLL_mva200 Calc Domestic financial sectors loans; liability, Level (NSA) 200 Day MA 200 Day MA -1.00 1945-10-01 2021-01-01 FALSE FALSE
FBLL_mva050 Calc Domestic financial sectors loans; liability, Level (NSA) 50 Day MA 50 Day MA -1.00 1945-10-01 2021-01-01 TRUE FALSE
NCBDBIQ027S_YoY Calc Nonfinancial corporate business; debt securities; liability, Level Year over Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
NCBDBIQ027S_YoY4 Calc Nonfinancial corporate business; debt securities; liability, Level 4 Year over 4 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
NCBDBIQ027S_YoY5 Calc Nonfinancial corporate business; debt securities; liability, Level 5 Year over 5 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
NCBDBIQ027S_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Nonfinancial corporate business; debt securities; liability, Level /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
NCBDBIQ027S_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Nonfinancial corporate business; debt securities; liability, Level /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
NCBDBIQ027S_SmoothDer Calc Derivative of Smoothed Nonfinancial corporate business; debt securities; liability, Level /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
NCBDBIQ027S_Log Calc Log of Nonfinancial corporate business; debt securities; liability, Level log() -1.00 1945-10-01 2021-01-01 TRUE TRUE
NCBDBIQ027S_mva200 Calc Nonfinancial corporate business; debt securities; liability, Level 200 Day MA 200 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
NCBDBIQ027S_mva050 Calc Nonfinancial corporate business; debt securities; liability, Level 50 Day MA 50 Day MA -1.00 1945-10-01 2021-01-01 TRUE TRUE
DGS10_YoY Calc 10-Year Treasury Constant Maturity Rate Year over Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10_YoY4 Calc 10-Year Treasury Constant Maturity Rate 4 Year over 4 Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10_YoY5 Calc 10-Year Treasury Constant Maturity Rate 5 Year over 5 Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) 10-Year Treasury Constant Maturity Rate /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) 10-Year Treasury Constant Maturity Rate /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10_SmoothDer Calc Derivative of Smoothed 10-Year Treasury Constant Maturity Rate /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10_Log Calc Log of 10-Year Treasury Constant Maturity Rate log() -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10_mva200 Calc 10-Year Treasury Constant Maturity Rate 200 Day MA 200 Day MA -1.00 1962-01-02 2021-06-10 TRUE TRUE
DGS10_mva050 Calc 10-Year Treasury Constant Maturity Rate 50 Day MA 50 Day MA -1.00 1962-01-02 2021-06-10 FALSE FALSE
TNX.Open_YoY Calc Year over Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Open_Log Calc Log of log() -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1962-01-02 2021-06-11 TRUE TRUE
TNX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.High_YoY Calc Year over Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.High_Log Calc Log of log() -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1962-01-02 2021-06-11 TRUE TRUE
TNX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Low_YoY Calc Year over Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Low_Log Calc Log of log() -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1962-01-02 2021-06-11 TRUE TRUE
TNX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Close_YoY Calc Year over Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Close_Log Calc Log of log() -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1962-01-02 2021-06-11 TRUE TRUE
TNX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Volume_YoY Calc Year over Year Percent -1.00 1962-01-02 2021-06-11 TRUE TRUE
TNX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1962-01-02 2021-06-11 TRUE TRUE
TNX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1962-01-02 2021-06-11 TRUE TRUE
TNX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1962-01-02 2021-06-11 TRUE TRUE
TNX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1962-01-02 2021-06-11 TRUE TRUE
TNX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1962-01-02 2021-06-11 TRUE TRUE
TNX.Volume_Log Calc Log of log() -1.00 1962-01-02 2021-06-11 TRUE TRUE
TNX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1962-01-02 2021-06-11 TRUE TRUE
TNX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1962-01-02 2021-06-11 TRUE TRUE
TNX.Adjusted_YoY Calc Year over Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Adjusted_Log Calc Log of log() -1.00 1962-01-02 2021-06-11 FALSE FALSE
TNX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1962-01-02 2021-06-11 TRUE TRUE
TNX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1962-01-02 2021-06-11 FALSE FALSE
CLF.Open_YoY Calc Year over Year Percent -1.00 2000-08-23 2021-06-11 FALSE FALSE
CLF.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-08-23 2021-06-11 TRUE FALSE
CLF.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-08-23 2021-06-11 FALSE FALSE
CLF.Open_Log Calc Log of log() -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.High_YoY Calc Year over Year Percent -1.00 2000-08-23 2021-06-11 FALSE FALSE
CLF.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-08-23 2021-06-11 FALSE FALSE
CLF.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-08-23 2021-06-11 FALSE FALSE
CLF.High_Log Calc Log of log() -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Low_YoY Calc Year over Year Percent -1.00 2000-08-23 2021-06-11 FALSE FALSE
CLF.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-08-23 2021-06-11 TRUE FALSE
CLF.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-08-23 2021-06-11 FALSE FALSE
CLF.Low_Log Calc Log of log() -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Close_YoY Calc Year over Year Percent -1.00 2000-08-23 2021-06-11 FALSE FALSE
CLF.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-08-23 2021-06-11 TRUE FALSE
CLF.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-08-23 2021-06-11 FALSE FALSE
CLF.Close_Log Calc Log of log() -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Volume_YoY Calc Year over Year Percent -1.00 2000-08-23 2021-06-11 FALSE FALSE
CLF.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-08-23 2021-06-11 FALSE FALSE
CLF.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-08-23 2021-06-11 FALSE FALSE
CLF.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-08-23 2021-06-11 FALSE FALSE
CLF.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-08-23 2021-06-11 FALSE FALSE
CLF.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-08-23 2021-06-11 FALSE FALSE
CLF.Volume_Log Calc Log of log() -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-08-23 2021-06-11 TRUE FALSE
CLF.Adjusted_YoY Calc Year over Year Percent -1.00 2000-08-23 2021-06-11 FALSE FALSE
CLF.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-08-23 2021-06-11 TRUE FALSE
CLF.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-08-23 2021-06-11 FALSE FALSE
CLF.Adjusted_Log Calc Log of log() -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-08-23 2021-06-11 TRUE TRUE
CLF.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-08-23 2021-06-11 TRUE TRUE
DGS30_YoY Calc 10-Year Treasury Constant Maturity Rate Year over Year Percent -1.00 1977-02-15 2021-06-10 FALSE FALSE
DGS30_YoY4 Calc 10-Year Treasury Constant Maturity Rate 4 Year over 4 Year Percent -1.00 1977-02-15 2021-06-10 FALSE FALSE
DGS30_YoY5 Calc 10-Year Treasury Constant Maturity Rate 5 Year over 5 Year Percent -1.00 1977-02-15 2021-06-10 FALSE FALSE
DGS30_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) 10-Year Treasury Constant Maturity Rate /period -1.00 1977-02-15 2021-06-10 FALSE FALSE
DGS30_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) 10-Year Treasury Constant Maturity Rate /period -1.00 1977-02-15 2021-06-10 FALSE FALSE
DGS30_SmoothDer Calc Derivative of Smoothed 10-Year Treasury Constant Maturity Rate /period -1.00 1977-02-15 2021-06-10 FALSE FALSE
DGS30_Log Calc Log of 10-Year Treasury Constant Maturity Rate log() -1.00 1977-02-15 2021-06-10 FALSE FALSE
DGS30_mva200 Calc 10-Year Treasury Constant Maturity Rate 200 Day MA 200 Day MA -1.00 1977-02-15 2021-06-10 TRUE TRUE
DGS30_mva050 Calc 10-Year Treasury Constant Maturity Rate 50 Day MA 50 Day MA -1.00 1977-02-15 2021-06-10 FALSE FALSE
DGS1_YoY Calc 1-Year Treasury Constant Maturity Rate Year over Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS1_YoY4 Calc 1-Year Treasury Constant Maturity Rate 4 Year over 4 Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS1_YoY5 Calc 1-Year Treasury Constant Maturity Rate 5 Year over 5 Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS1_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) 1-Year Treasury Constant Maturity Rate /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS1_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) 1-Year Treasury Constant Maturity Rate /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS1_SmoothDer Calc Derivative of Smoothed 1-Year Treasury Constant Maturity Rate /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS1_Log Calc Log of 1-Year Treasury Constant Maturity Rate log() -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS1_mva200 Calc 1-Year Treasury Constant Maturity Rate 200 Day MA 200 Day MA -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS1_mva050 Calc 1-Year Treasury Constant Maturity Rate 50 Day MA 50 Day MA -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS2_YoY Calc 2-Year Treasury Constant Maturity Rate Year over Year Percent -1.00 1976-06-01 2021-06-10 FALSE FALSE
DGS2_YoY4 Calc 2-Year Treasury Constant Maturity Rate 4 Year over 4 Year Percent -1.00 1976-06-01 2021-06-10 FALSE FALSE
DGS2_YoY5 Calc 2-Year Treasury Constant Maturity Rate 5 Year over 5 Year Percent -1.00 1976-06-01 2021-06-10 FALSE FALSE
DGS2_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) 2-Year Treasury Constant Maturity Rate /period -1.00 1976-06-01 2021-06-10 TRUE TRUE
DGS2_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) 2-Year Treasury Constant Maturity Rate /period -1.00 1976-06-01 2021-06-10 FALSE FALSE
DGS2_SmoothDer Calc Derivative of Smoothed 2-Year Treasury Constant Maturity Rate /period -1.00 1976-06-01 2021-06-10 FALSE FALSE
DGS2_Log Calc Log of 2-Year Treasury Constant Maturity Rate log() -1.00 1976-06-01 2021-06-10 FALSE FALSE
DGS2_mva200 Calc 2-Year Treasury Constant Maturity Rate 200 Day MA 200 Day MA -1.00 1976-06-01 2021-06-10 FALSE FALSE
DGS2_mva050 Calc 2-Year Treasury Constant Maturity Rate 50 Day MA 50 Day MA -1.00 1976-06-01 2021-06-10 FALSE FALSE
TB3MS_YoY Calc 3-Month Treasury Bill: Secondary Market Rate (Monthly) Year over Year Percent -1.00 1934-01-01 2021-05-01 FALSE FALSE
TB3MS_YoY4 Calc 3-Month Treasury Bill: Secondary Market Rate (Monthly) 4 Year over 4 Year Percent -1.00 1934-01-01 2021-05-01 FALSE FALSE
TB3MS_YoY5 Calc 3-Month Treasury Bill: Secondary Market Rate (Monthly) 5 Year over 5 Year Percent -1.00 1934-01-01 2021-05-01 FALSE FALSE
TB3MS_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) 3-Month Treasury Bill: Secondary Market Rate (Monthly) /period -1.00 1934-01-01 2021-05-01 FALSE FALSE
TB3MS_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) 3-Month Treasury Bill: Secondary Market Rate (Monthly) /period -1.00 1934-01-01 2021-05-01 FALSE FALSE
TB3MS_SmoothDer Calc Derivative of Smoothed 3-Month Treasury Bill: Secondary Market Rate (Monthly) /period -1.00 1934-01-01 2021-05-01 FALSE FALSE
TB3MS_Log Calc Log of 3-Month Treasury Bill: Secondary Market Rate (Monthly) log() -1.00 1934-01-01 2021-05-01 TRUE FALSE
TB3MS_mva200 Calc 3-Month Treasury Bill: Secondary Market Rate (Monthly) 200 Day MA 200 Day MA -1.00 1934-01-01 2021-05-01 FALSE FALSE
TB3MS_mva050 Calc 3-Month Treasury Bill: Secondary Market Rate (Monthly) 50 Day MA 50 Day MA -1.00 1934-01-01 2021-05-01 FALSE FALSE
DTB3_YoY Calc 3-Month Treasury Bill: Secondary Market Rate (Daily) Year over Year Percent -1.00 1954-01-04 2021-06-10 FALSE FALSE
DTB3_YoY4 Calc 3-Month Treasury Bill: Secondary Market Rate (Daily) 4 Year over 4 Year Percent -1.00 1954-01-04 2021-06-10 FALSE FALSE
DTB3_YoY5 Calc 3-Month Treasury Bill: Secondary Market Rate (Daily) 5 Year over 5 Year Percent -1.00 1954-01-04 2021-06-10 FALSE FALSE
DTB3_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) 3-Month Treasury Bill: Secondary Market Rate (Daily) /period -1.00 1954-01-04 2021-06-10 FALSE FALSE
DTB3_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) 3-Month Treasury Bill: Secondary Market Rate (Daily) /period -1.00 1954-01-04 2021-06-10 TRUE FALSE
DTB3_SmoothDer Calc Derivative of Smoothed 3-Month Treasury Bill: Secondary Market Rate (Daily) /period -1.00 1954-01-04 2021-06-10 FALSE FALSE
DTB3_Log Calc Log of 3-Month Treasury Bill: Secondary Market Rate (Daily) log() -1.00 1954-01-04 2021-06-10 TRUE TRUE
DTB3_mva200 Calc 3-Month Treasury Bill: Secondary Market Rate (Daily) 200 Day MA 200 Day MA -1.00 1954-01-04 2021-06-10 FALSE FALSE
DTB3_mva050 Calc 3-Month Treasury Bill: Secondary Market Rate (Daily) 50 Day MA 50 Day MA -1.00 1954-01-04 2021-06-10 FALSE FALSE
IRX.Open_YoY Calc Year over Year Percent -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Open_Log Calc Log of log() -1.00 1960-01-04 2021-06-11 TRUE TRUE
IRX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.High_YoY Calc Year over Year Percent -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.High_Log Calc Log of log() -1.00 1960-01-04 2021-06-11 TRUE TRUE
IRX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Low_YoY Calc Year over Year Percent -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Low_Log Calc Log of log() -1.00 1960-01-04 2021-06-11 TRUE TRUE
IRX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1960-01-04 2021-06-11 TRUE FALSE
IRX.Close_YoY Calc Year over Year Percent -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Close_Log Calc Log of log() -1.00 1960-01-04 2021-06-11 TRUE TRUE
IRX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1960-01-04 2021-06-11 TRUE FALSE
IRX.Volume_YoY Calc Year over Year Percent -1.00 1960-01-04 2021-06-11 TRUE TRUE
IRX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1960-01-04 2021-06-11 TRUE TRUE
IRX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1960-01-04 2021-06-11 TRUE TRUE
IRX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1960-01-04 2021-06-11 TRUE TRUE
IRX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1960-01-04 2021-06-11 TRUE TRUE
IRX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1960-01-04 2021-06-11 TRUE TRUE
IRX.Volume_Log Calc Log of log() -1.00 1960-01-04 2021-06-11 TRUE TRUE
IRX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1960-01-04 2021-06-11 TRUE TRUE
IRX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1960-01-04 2021-06-11 TRUE TRUE
IRX.Adjusted_YoY Calc Year over Year Percent -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Adjusted_Log Calc Log of log() -1.00 1960-01-04 2021-06-11 TRUE TRUE
IRX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1960-01-04 2021-06-11 FALSE FALSE
IRX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1960-01-04 2021-06-11 TRUE FALSE
DCOILWTICO_YoY Calc Crude Oil Prices: West Texas Intermediate (WTI) Cushing, Oklahoma Year over Year Percent -1.00 1986-01-02 2021-06-07 FALSE FALSE
DCOILWTICO_YoY4 Calc Crude Oil Prices: West Texas Intermediate (WTI) Cushing, Oklahoma 4 Year over 4 Year Percent -1.00 1986-01-02 2021-06-07 TRUE TRUE
DCOILWTICO_YoY5 Calc Crude Oil Prices: West Texas Intermediate (WTI) Cushing, Oklahoma 5 Year over 5 Year Percent -1.00 1986-01-02 2021-06-07 TRUE FALSE
DCOILWTICO_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Crude Oil Prices: West Texas Intermediate (WTI) Cushing, Oklahoma /period -1.00 1986-01-02 2021-06-07 TRUE TRUE
DCOILWTICO_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Crude Oil Prices: West Texas Intermediate (WTI) Cushing, Oklahoma /period -1.00 1986-01-02 2021-06-07 FALSE FALSE
DCOILWTICO_SmoothDer Calc Derivative of Smoothed Crude Oil Prices: West Texas Intermediate (WTI) Cushing, Oklahoma /period -1.00 1986-01-02 2021-06-07 FALSE FALSE
DCOILWTICO_Log Calc Log of Crude Oil Prices: West Texas Intermediate (WTI) Cushing, Oklahoma log() -1.00 1986-01-02 2021-06-07 TRUE TRUE
DCOILWTICO_mva200 Calc Crude Oil Prices: West Texas Intermediate (WTI) Cushing, Oklahoma 200 Day MA 200 Day MA -1.00 1986-01-02 2021-06-07 TRUE TRUE
DCOILWTICO_mva050 Calc Crude Oil Prices: West Texas Intermediate (WTI) Cushing, Oklahoma 50 Day MA 50 Day MA -1.00 1986-01-02 2021-06-07 TRUE TRUE
DCOILBRENTEU_YoY Calc Crude Oil Prices: Brent - Europe Year over Year Percent -1.00 1987-05-20 2021-06-07 FALSE FALSE
DCOILBRENTEU_YoY4 Calc Crude Oil Prices: Brent - Europe 4 Year over 4 Year Percent -1.00 1987-05-20 2021-06-07 FALSE FALSE
DCOILBRENTEU_YoY5 Calc Crude Oil Prices: Brent - Europe 5 Year over 5 Year Percent -1.00 1987-05-20 2021-06-07 TRUE FALSE
DCOILBRENTEU_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Crude Oil Prices: Brent - Europe /period -1.00 1987-05-20 2021-06-07 FALSE FALSE
DCOILBRENTEU_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Crude Oil Prices: Brent - Europe /period -1.00 1987-05-20 2021-06-07 FALSE FALSE
DCOILBRENTEU_SmoothDer Calc Derivative of Smoothed Crude Oil Prices: Brent - Europe /period -1.00 1987-05-20 2021-06-07 FALSE FALSE
DCOILBRENTEU_Log Calc Log of Crude Oil Prices: Brent - Europe log() -1.00 1987-05-20 2021-06-07 FALSE FALSE
DCOILBRENTEU_mva200 Calc Crude Oil Prices: Brent - Europe 200 Day MA 200 Day MA -1.00 1987-05-20 2021-06-07 TRUE TRUE
DCOILBRENTEU_mva050 Calc Crude Oil Prices: Brent - Europe 50 Day MA 50 Day MA -1.00 1987-05-20 2021-06-07 TRUE TRUE
NEWORDER_YoY Calc Manufacturers’ New Orders: Nondefense Capital Goods Excluding Aircraft Year over Year Percent -1.00 1992-02-01 2021-04-01 FALSE FALSE
NEWORDER_YoY4 Calc Manufacturers’ New Orders: Nondefense Capital Goods Excluding Aircraft 4 Year over 4 Year Percent -1.00 1992-02-01 2021-04-01 FALSE FALSE
NEWORDER_YoY5 Calc Manufacturers’ New Orders: Nondefense Capital Goods Excluding Aircraft 5 Year over 5 Year Percent -1.00 1992-02-01 2021-04-01 FALSE FALSE
NEWORDER_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Manufacturers’ New Orders: Nondefense Capital Goods Excluding Aircraft /period -1.00 1992-02-01 2021-04-01 TRUE TRUE
NEWORDER_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Manufacturers’ New Orders: Nondefense Capital Goods Excluding Aircraft /period -1.00 1992-02-01 2021-04-01 FALSE FALSE
NEWORDER_SmoothDer Calc Derivative of Smoothed Manufacturers’ New Orders: Nondefense Capital Goods Excluding Aircraft /period -1.00 1992-02-01 2021-04-01 FALSE FALSE
NEWORDER_Log Calc Log of Manufacturers’ New Orders: Nondefense Capital Goods Excluding Aircraft log() -1.00 1992-02-01 2021-04-01 TRUE TRUE
NEWORDER_mva200 Calc Manufacturers’ New Orders: Nondefense Capital Goods Excluding Aircraft 200 Day MA 200 Day MA -1.00 1992-02-01 2021-04-01 TRUE TRUE
NEWORDER_mva050 Calc Manufacturers’ New Orders: Nondefense Capital Goods Excluding Aircraft 50 Day MA 50 Day MA -1.00 1992-02-01 2021-04-01 TRUE TRUE
ALTSALES_YoY Calc Light Weight Vehicle Sales: Autos and Light Trucks Year over Year Percent -1.00 1976-01-01 2021-05-01 FALSE FALSE
ALTSALES_YoY4 Calc Light Weight Vehicle Sales: Autos and Light Trucks 4 Year over 4 Year Percent -1.00 1976-01-01 2021-05-01 TRUE FALSE
ALTSALES_YoY5 Calc Light Weight Vehicle Sales: Autos and Light Trucks 5 Year over 5 Year Percent -1.00 1976-01-01 2021-05-01 FALSE FALSE
ALTSALES_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Light Weight Vehicle Sales: Autos and Light Trucks /period -1.00 1976-01-01 2021-05-01 FALSE FALSE
ALTSALES_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Light Weight Vehicle Sales: Autos and Light Trucks /period -1.00 1976-01-01 2021-05-01 FALSE FALSE
ALTSALES_SmoothDer Calc Derivative of Smoothed Light Weight Vehicle Sales: Autos and Light Trucks /period -1.00 1976-01-01 2021-05-01 FALSE FALSE
ALTSALES_Log Calc Log of Light Weight Vehicle Sales: Autos and Light Trucks log() -1.00 1976-01-01 2021-05-01 TRUE FALSE
ALTSALES_mva200 Calc Light Weight Vehicle Sales: Autos and Light Trucks 200 Day MA 200 Day MA -1.00 1976-01-01 2021-05-01 TRUE TRUE
ALTSALES_mva050 Calc Light Weight Vehicle Sales: Autos and Light Trucks 50 Day MA 50 Day MA -1.00 1976-01-01 2021-05-01 FALSE FALSE
ICSA_YoY Calc Initial Jobless Claims Year over Year Percent -1.00 1967-01-07 2021-06-05 TRUE FALSE
ICSA_YoY4 Calc Initial Jobless Claims 4 Year over 4 Year Percent -1.00 1967-01-07 2021-06-05 FALSE FALSE
ICSA_YoY5 Calc Initial Jobless Claims 5 Year over 5 Year Percent -1.00 1967-01-07 2021-06-05 FALSE FALSE
ICSA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Initial Jobless Claims /period -1.00 1967-01-07 2021-06-05 FALSE FALSE
ICSA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Initial Jobless Claims /period -1.00 1967-01-07 2021-06-05 FALSE FALSE
ICSA_SmoothDer Calc Derivative of Smoothed Initial Jobless Claims /period -1.00 1967-01-07 2021-06-05 TRUE TRUE
ICSA_Log Calc Log of Initial Jobless Claims log() -1.00 1967-01-07 2021-06-05 FALSE FALSE
ICSA_mva200 Calc Initial Jobless Claims 200 Day MA 200 Day MA -1.00 1967-01-07 2021-06-05 FALSE FALSE
ICSA_mva050 Calc Initial Jobless Claims 50 Day MA 50 Day MA -1.00 1967-01-07 2021-06-05 FALSE FALSE
GSPC.Open_YoY Calc Year over Year Percent -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1927-12-30 2021-06-11 TRUE TRUE
GSPC.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Open_Log Calc Log of log() -1.00 1927-12-30 2021-06-11 TRUE TRUE
GSPC.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1927-12-30 2021-06-11 TRUE TRUE
GSPC.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1927-12-30 2021-06-11 TRUE TRUE
GSPC.High_YoY Calc Year over Year Percent -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1927-12-30 2021-06-11 TRUE TRUE
GSPC.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.High_Log Calc Log of log() -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1927-12-30 2021-06-11 TRUE TRUE
GSPC.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1927-12-30 2021-06-11 TRUE TRUE
GSPC.Low_YoY Calc Year over Year Percent -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1927-12-30 2021-06-11 TRUE TRUE
GSPC.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Low_Log Calc Log of log() -1.00 1927-12-30 2021-06-11 TRUE TRUE
GSPC.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1927-12-30 2021-06-11 TRUE TRUE
GSPC.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1927-12-30 2021-06-11 TRUE TRUE
GSPC.Close_YoY Calc Year over Year Percent -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1927-12-30 2021-06-11 TRUE FALSE
GSPC.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1927-12-30 2021-06-11 TRUE TRUE
GSPC.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1927-12-30 2021-06-11 TRUE TRUE
GSPC.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Close_Log Calc Log of log() -1.00 1927-12-30 2021-06-11 TRUE TRUE
GSPC.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1927-12-30 2021-06-11 TRUE TRUE
GSPC.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1927-12-30 2021-06-11 TRUE TRUE
GSPC.Volume_YoY Calc Year over Year Percent -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Volume_Log Calc Log of log() -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Adjusted_YoY Calc Year over Year Percent -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1927-12-30 2021-06-11 TRUE FALSE
GSPC.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1927-12-30 2021-06-11 TRUE TRUE
GSPC.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1927-12-30 2021-06-11 TRUE TRUE
GSPC.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1927-12-30 2021-06-11 FALSE FALSE
GSPC.Adjusted_Log Calc Log of log() -1.00 1927-12-30 2021-06-11 TRUE TRUE
GSPC.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1927-12-30 2021-06-11 TRUE TRUE
GSPC.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1927-12-30 2021-06-11 TRUE TRUE
RLG.Open_YoY Calc Year over Year Percent -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2002-09-30 2021-06-11 TRUE TRUE
RLG.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2002-09-30 2021-06-11 TRUE FALSE
RLG.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.Open_Log Calc Log of log() -1.00 2002-09-30 2021-06-11 TRUE FALSE
RLG.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2002-09-30 2021-06-11 TRUE TRUE
RLG.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.High_YoY Calc Year over Year Percent -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2002-09-30 2021-06-11 TRUE TRUE
RLG.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.High_Log Calc Log of log() -1.00 2002-09-30 2021-06-11 TRUE FALSE
RLG.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2002-09-30 2021-06-11 TRUE TRUE
RLG.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.Low_YoY Calc Year over Year Percent -1.00 2002-09-30 2021-06-11 TRUE FALSE
RLG.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2002-09-30 2021-06-11 TRUE TRUE
RLG.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.Low_Log Calc Log of log() -1.00 2002-09-30 2021-06-11 TRUE FALSE
RLG.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2002-09-30 2021-06-11 TRUE TRUE
RLG.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.Close_YoY Calc Year over Year Percent -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2002-09-30 2021-06-11 TRUE FALSE
RLG.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2002-09-30 2021-06-11 TRUE TRUE
RLG.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2002-09-30 2021-06-11 TRUE FALSE
RLG.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.Close_Log Calc Log of log() -1.00 2002-09-30 2021-06-11 TRUE FALSE
RLG.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2002-09-30 2021-06-11 TRUE TRUE
RLG.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.Volume_YoY Calc Year over Year Percent -1.00 2002-09-30 2021-06-11 TRUE TRUE
RLG.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2002-09-30 2021-06-11 TRUE TRUE
RLG.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2002-09-30 2021-06-11 TRUE TRUE
RLG.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2002-09-30 2021-06-11 TRUE TRUE
RLG.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2002-09-30 2021-06-11 TRUE TRUE
RLG.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2002-09-30 2021-06-11 TRUE TRUE
RLG.Volume_Log Calc Log of log() -1.00 2002-09-30 2021-06-11 TRUE TRUE
RLG.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2002-09-30 2021-06-11 TRUE TRUE
RLG.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2002-09-30 2021-06-11 TRUE TRUE
RLG.Adjusted_YoY Calc Year over Year Percent -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2002-09-30 2021-06-11 TRUE FALSE
RLG.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2002-09-30 2021-06-11 TRUE TRUE
RLG.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2002-09-30 2021-06-11 TRUE FALSE
RLG.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2002-09-30 2021-06-11 FALSE FALSE
RLG.Adjusted_Log Calc Log of log() -1.00 2002-09-30 2021-06-11 TRUE FALSE
RLG.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2002-09-30 2021-06-11 TRUE TRUE
RLG.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2002-09-30 2021-06-11 FALSE FALSE
DJI.Open_YoY Calc Year over Year Percent -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1992-01-02 2021-06-11 TRUE TRUE
DJI.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Open_Log Calc Log of log() -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1992-01-02 2021-06-11 TRUE TRUE
DJI.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1992-01-02 2021-06-11 TRUE TRUE
DJI.High_YoY Calc Year over Year Percent -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1992-01-02 2021-06-11 TRUE TRUE
DJI.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.High_Log Calc Log of log() -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1992-01-02 2021-06-11 TRUE TRUE
DJI.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1992-01-02 2021-06-11 TRUE TRUE
DJI.Low_YoY Calc Year over Year Percent -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1992-01-02 2021-06-11 TRUE TRUE
DJI.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Low_Log Calc Log of log() -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1992-01-02 2021-06-11 TRUE TRUE
DJI.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1992-01-02 2021-06-11 TRUE TRUE
DJI.Close_YoY Calc Year over Year Percent -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1992-01-02 2021-06-11 TRUE TRUE
DJI.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Close_Log Calc Log of log() -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1992-01-02 2021-06-11 TRUE TRUE
DJI.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1992-01-02 2021-06-11 TRUE TRUE
DJI.Volume_YoY Calc Year over Year Percent -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Volume_Log Calc Log of log() -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Adjusted_YoY Calc Year over Year Percent -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1992-01-02 2021-06-11 TRUE TRUE
DJI.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Adjusted_Log Calc Log of log() -1.00 1992-01-02 2021-06-11 FALSE FALSE
DJI.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1992-01-02 2021-06-11 TRUE TRUE
DJI.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1992-01-02 2021-06-11 TRUE TRUE
STOXX50E.Open_YoY Calc Year over Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-03-30 2021-06-11 TRUE FALSE
STOXX50E.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Open_Log Calc Log of log() -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.High_YoY Calc Year over Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-03-30 2021-06-11 TRUE FALSE
STOXX50E.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.High_Log Calc Log of log() -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.Low_YoY Calc Year over Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-03-30 2021-06-11 TRUE FALSE
STOXX50E.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Low_Log Calc Log of log() -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.Close_YoY Calc Year over Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-03-30 2021-06-11 TRUE FALSE
STOXX50E.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Close_Log Calc Log of log() -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.Volume_YoY Calc Year over Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Volume_Log Calc Log of log() -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Adjusted_YoY Calc Year over Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-03-30 2021-06-11 TRUE FALSE
STOXX50E.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-03-30 2021-06-11 FALSE FALSE
STOXX50E.Adjusted_Log Calc Log of log() -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-03-30 2021-06-11 TRUE TRUE
STOXX50E.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-03-30 2021-06-11 TRUE TRUE
EFA.Open_YoY Calc Year over Year Percent -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2001-08-27 2021-06-11 TRUE TRUE
EFA.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Open_Log Calc Log of log() -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2001-08-27 2021-06-11 TRUE TRUE
EFA.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2001-08-27 2021-06-11 TRUE TRUE
EFA.High_YoY Calc Year over Year Percent -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2001-08-27 2021-06-11 TRUE TRUE
EFA.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.High_Log Calc Log of log() -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2001-08-27 2021-06-11 TRUE TRUE
EFA.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2001-08-27 2021-06-11 TRUE TRUE
EFA.Low_YoY Calc Year over Year Percent -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2001-08-27 2021-06-11 TRUE TRUE
EFA.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Low_Log Calc Log of log() -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2001-08-27 2021-06-11 TRUE TRUE
EFA.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2001-08-27 2021-06-11 TRUE TRUE
EFA.Close_YoY Calc Year over Year Percent -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2001-08-27 2021-06-11 TRUE TRUE
EFA.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Close_Log Calc Log of log() -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2001-08-27 2021-06-11 TRUE TRUE
EFA.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2001-08-27 2021-06-11 TRUE TRUE
EFA.Volume_YoY Calc Year over Year Percent -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Volume_Log Calc Log of log() -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Adjusted_YoY Calc Year over Year Percent -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2001-08-27 2021-06-11 TRUE FALSE
EFA.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2001-08-27 2021-06-11 TRUE TRUE
EFA.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2001-08-27 2021-06-11 TRUE TRUE
EFA.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2001-08-27 2021-06-11 FALSE FALSE
EFA.Adjusted_Log Calc Log of log() -1.00 2001-08-27 2021-06-11 TRUE TRUE
EFA.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2001-08-27 2021-06-11 TRUE TRUE
EFA.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2001-08-27 2021-06-11 TRUE TRUE
GDP_YoY Calc Gross Domestic Product Year over Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
GDP_YoY4 Calc Gross Domestic Product 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
GDP_YoY5 Calc Gross Domestic Product 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Gross Domestic Product /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Gross Domestic Product /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
GDP_SmoothDer Calc Derivative of Smoothed Gross Domestic Product /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
GDP_Log Calc Log of Gross Domestic Product log() -1.00 1947-01-01 2021-01-01 TRUE TRUE
GDP_mva200 Calc Gross Domestic Product 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
GDP_mva050 Calc Gross Domestic Product 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
FNDEFX_YoY Calc Federal Government: Nondefense Consumption Expenditures and Gross Investment (SA, Annual Rate) Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
FNDEFX_YoY4 Calc Federal Government: Nondefense Consumption Expenditures and Gross Investment (SA, Annual Rate) 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
FNDEFX_YoY5 Calc Federal Government: Nondefense Consumption Expenditures and Gross Investment (SA, Annual Rate) 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
FNDEFX_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Federal Government: Nondefense Consumption Expenditures and Gross Investment (SA, Annual Rate) /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
FNDEFX_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Federal Government: Nondefense Consumption Expenditures and Gross Investment (SA, Annual Rate) /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
FNDEFX_SmoothDer Calc Derivative of Smoothed Federal Government: Nondefense Consumption Expenditures and Gross Investment (SA, Annual Rate) /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
FNDEFX_Log Calc Log of Federal Government: Nondefense Consumption Expenditures and Gross Investment (SA, Annual Rate) log() -1.00 1947-01-01 2021-01-01 TRUE TRUE
FNDEFX_mva200 Calc Federal Government: Nondefense Consumption Expenditures and Gross Investment (SA, Annual Rate) 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
FNDEFX_mva050 Calc Federal Government: Nondefense Consumption Expenditures and Gross Investment (SA, Annual Rate) 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
FDEFX_YoY Calc Federal Government: National Defense Consumption Expenditures and Gross Investment (SA, Annual Rate) Year over Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
FDEFX_YoY4 Calc Federal Government: National Defense Consumption Expenditures and Gross Investment (SA, Annual Rate) 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
FDEFX_YoY5 Calc Federal Government: National Defense Consumption Expenditures and Gross Investment (SA, Annual Rate) 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
FDEFX_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Federal Government: National Defense Consumption Expenditures and Gross Investment (SA, Annual Rate) /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
FDEFX_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Federal Government: National Defense Consumption Expenditures and Gross Investment (SA, Annual Rate) /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
FDEFX_SmoothDer Calc Derivative of Smoothed Federal Government: National Defense Consumption Expenditures and Gross Investment (SA, Annual Rate) /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
FDEFX_Log Calc Log of Federal Government: National Defense Consumption Expenditures and Gross Investment (SA, Annual Rate) log() -1.00 1947-01-01 2021-01-01 TRUE TRUE
FDEFX_mva200 Calc Federal Government: National Defense Consumption Expenditures and Gross Investment (SA, Annual Rate) 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
FDEFX_mva050 Calc Federal Government: National Defense Consumption Expenditures and Gross Investment (SA, Annual Rate) 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
GDPNOW_YoY Calc Fed Atlanta GDPNow Year over Year Percent -1.00 2011-07-01 2021-04-01 FALSE FALSE
GDPNOW_YoY4 Calc Fed Atlanta GDPNow 4 Year over 4 Year Percent -1.00 2011-07-01 2021-04-01 TRUE FALSE
GDPNOW_YoY5 Calc Fed Atlanta GDPNow 5 Year over 5 Year Percent -1.00 2011-07-01 2021-04-01 FALSE FALSE
GDPNOW_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Fed Atlanta GDPNow /period -1.00 2011-07-01 2021-04-01 FALSE FALSE
GDPNOW_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Fed Atlanta GDPNow /period -1.00 2011-07-01 2021-04-01 FALSE FALSE
GDPNOW_SmoothDer Calc Derivative of Smoothed Fed Atlanta GDPNow /period -1.00 2011-07-01 2021-04-01 TRUE TRUE
GDPNOW_Log Calc Log of Fed Atlanta GDPNow log() -1.00 2011-07-01 2021-04-01 TRUE TRUE
GDPNOW_mva200 Calc Fed Atlanta GDPNow 200 Day MA 200 Day MA -1.00 2011-07-01 2021-04-01 TRUE FALSE
GDPNOW_mva050 Calc Fed Atlanta GDPNow 50 Day MA 50 Day MA -1.00 2011-07-01 2021-04-01 TRUE TRUE
GDPC1_YoY Calc Real Gross Domestic Product Year over Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
GDPC1_YoY4 Calc Real Gross Domestic Product 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
GDPC1_YoY5 Calc Real Gross Domestic Product 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
GDPC1_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Real Gross Domestic Product /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
GDPC1_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Real Gross Domestic Product /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
GDPC1_SmoothDer Calc Derivative of Smoothed Real Gross Domestic Product /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
GDPC1_Log Calc Log of Real Gross Domestic Product log() -1.00 1947-01-01 2021-01-01 TRUE TRUE
GDPC1_mva200 Calc Real Gross Domestic Product 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
GDPC1_mva050 Calc Real Gross Domestic Product 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
GDPDEF_YoY Calc Gross Domestic Product: Implicit Price Deflator Year over Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
GDPDEF_YoY4 Calc Gross Domestic Product: Implicit Price Deflator 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
GDPDEF_YoY5 Calc Gross Domestic Product: Implicit Price Deflator 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
GDPDEF_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Gross Domestic Product: Implicit Price Deflator /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
GDPDEF_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Gross Domestic Product: Implicit Price Deflator /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
GDPDEF_SmoothDer Calc Derivative of Smoothed Gross Domestic Product: Implicit Price Deflator /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
GDPDEF_Log Calc Log of Gross Domestic Product: Implicit Price Deflator log() -1.00 1947-01-01 2021-01-01 TRUE TRUE
GDPDEF_mva200 Calc Gross Domestic Product: Implicit Price Deflator 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
GDPDEF_mva050 Calc Gross Domestic Product: Implicit Price Deflator 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
VIG.Open_YoY Calc Year over Year Percent -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-05-02 2021-06-11 TRUE TRUE
VIG.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Open_Log Calc Log of log() -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-05-02 2021-06-11 TRUE TRUE
VIG.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-05-02 2021-06-11 TRUE TRUE
VIG.High_YoY Calc Year over Year Percent -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-05-02 2021-06-11 TRUE TRUE
VIG.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.High_Log Calc Log of log() -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-05-02 2021-06-11 TRUE TRUE
VIG.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-05-02 2021-06-11 TRUE TRUE
VIG.Low_YoY Calc Year over Year Percent -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-05-02 2021-06-11 TRUE TRUE
VIG.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Low_Log Calc Log of log() -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-05-02 2021-06-11 TRUE TRUE
VIG.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-05-02 2021-06-11 TRUE TRUE
VIG.Close_YoY Calc Year over Year Percent -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-05-02 2021-06-11 TRUE TRUE
VIG.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Close_Log Calc Log of log() -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-05-02 2021-06-11 TRUE TRUE
VIG.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-05-02 2021-06-11 TRUE TRUE
VIG.Volume_YoY Calc Year over Year Percent -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Volume_Log Calc Log of log() -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Adjusted_YoY Calc Year over Year Percent -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-05-02 2021-06-11 TRUE TRUE
VIG.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Adjusted_Log Calc Log of log() -1.00 2006-05-02 2021-06-11 FALSE FALSE
VIG.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-05-02 2021-06-11 TRUE TRUE
VIG.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-05-02 2021-06-11 TRUE TRUE
WLRRAL_YoY Calc Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Year over Year Percent -1.00 2002-12-18 2021-06-09 TRUE TRUE
WLRRAL_YoY4 Calc Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) 4 Year over 4 Year Percent -1.00 2002-12-18 2021-06-09 FALSE FALSE
WLRRAL_YoY5 Calc Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) 5 Year over 5 Year Percent -1.00 2002-12-18 2021-06-09 TRUE TRUE
WLRRAL_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) /period -1.00 2002-12-18 2021-06-09 TRUE TRUE
WLRRAL_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) /period -1.00 2002-12-18 2021-06-09 FALSE FALSE
WLRRAL_SmoothDer Calc Derivative of Smoothed Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) /period -1.00 2002-12-18 2021-06-09 TRUE TRUE
WLRRAL_Log Calc Log of Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) log() -1.00 2002-12-18 2021-06-09 TRUE TRUE
WLRRAL_mva200 Calc Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) 200 Day MA 200 Day MA -1.00 2002-12-18 2021-06-09 TRUE TRUE
WLRRAL_mva050 Calc Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) 50 Day MA 50 Day MA -1.00 2002-12-18 2021-06-09 TRUE TRUE
FEDFUNDS_YoY Calc Effective Federal Funds Rate Year over Year Percent -1.00 1954-07-01 2021-05-01 FALSE FALSE
FEDFUNDS_YoY4 Calc Effective Federal Funds Rate 4 Year over 4 Year Percent -1.00 1954-07-01 2021-05-01 FALSE FALSE
FEDFUNDS_YoY5 Calc Effective Federal Funds Rate 5 Year over 5 Year Percent -1.00 1954-07-01 2021-05-01 FALSE FALSE
FEDFUNDS_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Effective Federal Funds Rate /period -1.00 1954-07-01 2021-05-01 FALSE FALSE
FEDFUNDS_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Effective Federal Funds Rate /period -1.00 1954-07-01 2021-05-01 FALSE FALSE
FEDFUNDS_SmoothDer Calc Derivative of Smoothed Effective Federal Funds Rate /period -1.00 1954-07-01 2021-05-01 FALSE FALSE
FEDFUNDS_Log Calc Log of Effective Federal Funds Rate log() -1.00 1954-07-01 2021-05-01 TRUE FALSE
FEDFUNDS_mva200 Calc Effective Federal Funds Rate 200 Day MA 200 Day MA -1.00 1954-07-01 2021-05-01 FALSE FALSE
FEDFUNDS_mva050 Calc Effective Federal Funds Rate 50 Day MA 50 Day MA -1.00 1954-07-01 2021-05-01 FALSE FALSE
GPDI_YoY Calc Gross Private Domestic Investment Year over Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
GPDI_YoY4 Calc Gross Private Domestic Investment 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
GPDI_YoY5 Calc Gross Private Domestic Investment 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
GPDI_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Gross Private Domestic Investment /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
GPDI_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Gross Private Domestic Investment /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
GPDI_SmoothDer Calc Derivative of Smoothed Gross Private Domestic Investment /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
GPDI_Log Calc Log of Gross Private Domestic Investment log() -1.00 1947-01-01 2021-01-01 TRUE FALSE
GPDI_mva200 Calc Gross Private Domestic Investment 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
GPDI_mva050 Calc Gross Private Domestic Investment 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE FALSE
W790RC1Q027SBEA_YoY Calc Net domestic investment: Private: Domestic busines Year over Year Percent -1.00 1960-01-01 2021-01-01 FALSE FALSE
W790RC1Q027SBEA_YoY4 Calc Net domestic investment: Private: Domestic busines 4 Year over 4 Year Percent -1.00 1960-01-01 2021-01-01 FALSE FALSE
W790RC1Q027SBEA_YoY5 Calc Net domestic investment: Private: Domestic busines 5 Year over 5 Year Percent -1.00 1960-01-01 2021-01-01 TRUE TRUE
W790RC1Q027SBEA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Net domestic investment: Private: Domestic busines /period -1.00 1960-01-01 2021-01-01 TRUE FALSE
W790RC1Q027SBEA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Net domestic investment: Private: Domestic busines /period -1.00 1960-01-01 2021-01-01 FALSE FALSE
W790RC1Q027SBEA_SmoothDer Calc Derivative of Smoothed Net domestic investment: Private: Domestic busines /period -1.00 1960-01-01 2021-01-01 FALSE FALSE
W790RC1Q027SBEA_Log Calc Log of Net domestic investment: Private: Domestic busines log() -1.00 1960-01-01 2021-01-01 TRUE TRUE
W790RC1Q027SBEA_mva200 Calc Net domestic investment: Private: Domestic busines 200 Day MA 200 Day MA -1.00 1960-01-01 2021-01-01 FALSE FALSE
W790RC1Q027SBEA_mva050 Calc Net domestic investment: Private: Domestic busines 50 Day MA 50 Day MA -1.00 1960-01-01 2021-01-01 TRUE FALSE
MZMV_YoY Calc Velocity of MZM Money Stock Year over Year Percent -1.00 1959-01-01 2020-10-01 FALSE FALSE
MZMV_YoY4 Calc Velocity of MZM Money Stock 4 Year over 4 Year Percent -1.00 1959-01-01 2020-10-01 FALSE FALSE
MZMV_YoY5 Calc Velocity of MZM Money Stock 5 Year over 5 Year Percent -1.00 1959-01-01 2020-10-01 TRUE TRUE
MZMV_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Velocity of MZM Money Stock /period -1.00 1959-01-01 2020-10-01 TRUE TRUE
MZMV_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Velocity of MZM Money Stock /period -1.00 1959-01-01 2020-10-01 FALSE FALSE
MZMV_SmoothDer Calc Derivative of Smoothed Velocity of MZM Money Stock /period -1.00 1959-01-01 2020-10-01 FALSE FALSE
MZMV_Log Calc Log of Velocity of MZM Money Stock log() -1.00 1959-01-01 2020-10-01 TRUE TRUE
MZMV_mva200 Calc Velocity of MZM Money Stock 200 Day MA 200 Day MA -1.00 1959-01-01 2020-10-01 TRUE FALSE
MZMV_mva050 Calc Velocity of MZM Money Stock 50 Day MA 50 Day MA -1.00 1959-01-01 2020-10-01 TRUE TRUE
M1_YoY Calc M1 Money Stock Year over Year Percent -1.00 1975-01-06 2021-02-01 FALSE FALSE
M1_YoY4 Calc M1 Money Stock 4 Year over 4 Year Percent -1.00 1975-01-06 2021-02-01 FALSE FALSE
M1_YoY5 Calc M1 Money Stock 5 Year over 5 Year Percent -1.00 1975-01-06 2021-02-01 FALSE FALSE
M1_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) M1 Money Stock /period -1.00 1975-01-06 2021-02-01 FALSE FALSE
M1_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) M1 Money Stock /period -1.00 1975-01-06 2021-02-01 FALSE FALSE
M1_SmoothDer Calc Derivative of Smoothed M1 Money Stock /period -1.00 1975-01-06 2021-02-01 TRUE TRUE
M1_Log Calc Log of M1 Money Stock log() -1.00 1975-01-06 2021-02-01 TRUE FALSE
M1_mva200 Calc M1 Money Stock 200 Day MA 200 Day MA -1.00 1975-01-06 2021-02-01 TRUE TRUE
M1_mva050 Calc M1 Money Stock 50 Day MA 50 Day MA -1.00 1975-01-06 2021-02-01 TRUE FALSE
M2_YoY Calc M2 Money Stock Year over Year Percent -1.00 1980-11-03 2021-02-01 FALSE FALSE
M2_YoY4 Calc M2 Money Stock 4 Year over 4 Year Percent -1.00 1980-11-03 2021-02-01 FALSE FALSE
M2_YoY5 Calc M2 Money Stock 5 Year over 5 Year Percent -1.00 1980-11-03 2021-02-01 FALSE FALSE
M2_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) M2 Money Stock /period -1.00 1980-11-03 2021-02-01 FALSE FALSE
M2_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) M2 Money Stock /period -1.00 1980-11-03 2021-02-01 FALSE FALSE
M2_SmoothDer Calc Derivative of Smoothed M2 Money Stock /period -1.00 1980-11-03 2021-02-01 TRUE TRUE
M2_Log Calc Log of M2 Money Stock log() -1.00 1980-11-03 2021-02-01 TRUE FALSE
M2_mva200 Calc M2 Money Stock 200 Day MA 200 Day MA -1.00 1980-11-03 2021-02-01 TRUE TRUE
M2_mva050 Calc M2 Money Stock 50 Day MA 50 Day MA -1.00 1980-11-03 2021-02-01 TRUE FALSE
OPHNFB_YoY Calc Nonfarm Business Sector: Real Output Per Hour of All Persons Year over Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
OPHNFB_YoY4 Calc Nonfarm Business Sector: Real Output Per Hour of All Persons 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
OPHNFB_YoY5 Calc Nonfarm Business Sector: Real Output Per Hour of All Persons 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
OPHNFB_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Nonfarm Business Sector: Real Output Per Hour of All Persons /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
OPHNFB_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Nonfarm Business Sector: Real Output Per Hour of All Persons /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
OPHNFB_SmoothDer Calc Derivative of Smoothed Nonfarm Business Sector: Real Output Per Hour of All Persons /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
OPHNFB_Log Calc Log of Nonfarm Business Sector: Real Output Per Hour of All Persons log() -1.00 1947-01-01 2021-01-01 TRUE TRUE
OPHNFB_mva200 Calc Nonfarm Business Sector: Real Output Per Hour of All Persons 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
OPHNFB_mva050 Calc Nonfarm Business Sector: Real Output Per Hour of All Persons 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
IPMAN_YoY Calc Industrial Production: Manufacturing (NAICS) Year over Year Percent -1.00 1972-01-01 2021-04-01 FALSE FALSE
IPMAN_YoY4 Calc Industrial Production: Manufacturing (NAICS) 4 Year over 4 Year Percent -1.00 1972-01-01 2021-04-01 TRUE FALSE
IPMAN_YoY5 Calc Industrial Production: Manufacturing (NAICS) 5 Year over 5 Year Percent -1.00 1972-01-01 2021-04-01 FALSE FALSE
IPMAN_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Industrial Production: Manufacturing (NAICS) /period -1.00 1972-01-01 2021-04-01 TRUE TRUE
IPMAN_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Industrial Production: Manufacturing (NAICS) /period -1.00 1972-01-01 2021-04-01 FALSE FALSE
IPMAN_SmoothDer Calc Derivative of Smoothed Industrial Production: Manufacturing (NAICS) /period -1.00 1972-01-01 2021-04-01 FALSE FALSE
IPMAN_Log Calc Log of Industrial Production: Manufacturing (NAICS) log() -1.00 1972-01-01 2021-04-01 TRUE FALSE
IPMAN_mva200 Calc Industrial Production: Manufacturing (NAICS) 200 Day MA 200 Day MA -1.00 1972-01-01 2021-04-01 TRUE TRUE
IPMAN_mva050 Calc Industrial Production: Manufacturing (NAICS) 50 Day MA 50 Day MA -1.00 1972-01-01 2021-04-01 TRUE TRUE
IWD.Open_YoY Calc Year over Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWD.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Open_Log Calc Log of log() -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWD.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWD.High_YoY Calc Year over Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWD.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.High_Log Calc Log of log() -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWD.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWD.Low_YoY Calc Year over Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWD.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Low_Log Calc Log of log() -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWD.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWD.Close_YoY Calc Year over Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWD.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Close_Log Calc Log of log() -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWD.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWD.Volume_YoY Calc Year over Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Volume_Log Calc Log of log() -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Adjusted_YoY Calc Year over Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWD.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Adjusted_Log Calc Log of log() -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWD.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWD.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
GS5_YoY Calc 5-Year Treasury Constant Maturity Rate Year over Year Percent -1.00 1953-04-01 2021-05-01 TRUE TRUE
GS5_YoY4 Calc 5-Year Treasury Constant Maturity Rate 4 Year over 4 Year Percent -1.00 1953-04-01 2021-05-01 FALSE FALSE
GS5_YoY5 Calc 5-Year Treasury Constant Maturity Rate 5 Year over 5 Year Percent -1.00 1953-04-01 2021-05-01 TRUE TRUE
GS5_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) 5-Year Treasury Constant Maturity Rate /period -1.00 1953-04-01 2021-05-01 FALSE FALSE
GS5_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) 5-Year Treasury Constant Maturity Rate /period -1.00 1953-04-01 2021-05-01 FALSE FALSE
GS5_SmoothDer Calc Derivative of Smoothed 5-Year Treasury Constant Maturity Rate /period -1.00 1953-04-01 2021-05-01 FALSE FALSE
GS5_Log Calc Log of 5-Year Treasury Constant Maturity Rate log() -1.00 1953-04-01 2021-05-01 TRUE FALSE
GS5_mva200 Calc 5-Year Treasury Constant Maturity Rate 200 Day MA 200 Day MA -1.00 1953-04-01 2021-05-01 TRUE TRUE
GS5_mva050 Calc 5-Year Treasury Constant Maturity Rate 50 Day MA 50 Day MA -1.00 1953-04-01 2021-05-01 FALSE FALSE
PSAVERT_YoY Calc Personal Saving Rate Year over Year Percent -1.00 1959-01-01 2021-04-01 TRUE FALSE
PSAVERT_YoY4 Calc Personal Saving Rate 4 Year over 4 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
PSAVERT_YoY5 Calc Personal Saving Rate 5 Year over 5 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
PSAVERT_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Personal Saving Rate /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
PSAVERT_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Personal Saving Rate /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
PSAVERT_SmoothDer Calc Derivative of Smoothed Personal Saving Rate /period -1.00 1959-01-01 2021-04-01 TRUE TRUE
PSAVERT_Log Calc Log of Personal Saving Rate log() -1.00 1959-01-01 2021-04-01 TRUE FALSE
PSAVERT_mva200 Calc Personal Saving Rate 200 Day MA 200 Day MA -1.00 1959-01-01 2021-04-01 TRUE TRUE
PSAVERT_mva050 Calc Personal Saving Rate 50 Day MA 50 Day MA -1.00 1959-01-01 2021-04-01 FALSE FALSE
VIXCLS_YoY Calc CBOE Volatility Index Year over Year Percent -1.00 1990-01-02 2021-06-10 FALSE FALSE
VIXCLS_YoY4 Calc CBOE Volatility Index 4 Year over 4 Year Percent -1.00 1990-01-02 2021-06-10 FALSE FALSE
VIXCLS_YoY5 Calc CBOE Volatility Index 5 Year over 5 Year Percent -1.00 1990-01-02 2021-06-10 FALSE FALSE
VIXCLS_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) CBOE Volatility Index /period -1.00 1990-01-02 2021-06-10 FALSE FALSE
VIXCLS_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) CBOE Volatility Index /period -1.00 1990-01-02 2021-06-10 FALSE FALSE
VIXCLS_SmoothDer Calc Derivative of Smoothed CBOE Volatility Index /period -1.00 1990-01-02 2021-06-10 TRUE TRUE
VIXCLS_Log Calc Log of CBOE Volatility Index log() -1.00 1990-01-02 2021-06-10 FALSE FALSE
VIXCLS_mva200 Calc CBOE Volatility Index 200 Day MA 200 Day MA -1.00 1990-01-02 2021-06-10 FALSE FALSE
VIXCLS_mva050 Calc CBOE Volatility Index 50 Day MA 50 Day MA -1.00 1990-01-02 2021-06-10 FALSE FALSE
VXX.Open_YoY Calc Year over Year Percent -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2018-01-25 2021-06-11 TRUE TRUE
VXX.Open_Log Calc Log of log() -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.High_YoY Calc Year over Year Percent -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2018-01-25 2021-06-11 TRUE TRUE
VXX.High_Log Calc Log of log() -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Low_YoY Calc Year over Year Percent -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2018-01-25 2021-06-11 TRUE TRUE
VXX.Low_Log Calc Log of log() -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Close_YoY Calc Year over Year Percent -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2018-01-25 2021-06-11 TRUE TRUE
VXX.Close_Log Calc Log of log() -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Volume_YoY Calc Year over Year Percent -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2018-01-25 2021-06-11 TRUE TRUE
VXX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2018-01-25 2021-06-11 TRUE TRUE
VXX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2018-01-25 2021-06-11 TRUE TRUE
VXX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Volume_Log Calc Log of log() -1.00 2018-01-25 2021-06-11 TRUE TRUE
VXX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2018-01-25 2021-06-11 TRUE TRUE
VXX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Adjusted_YoY Calc Year over Year Percent -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2018-01-25 2021-06-11 TRUE TRUE
VXX.Adjusted_Log Calc Log of log() -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2018-01-25 2021-06-11 FALSE FALSE
VXX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2018-01-25 2021-06-11 FALSE FALSE
HOUST1F_YoY Calc Privately Owned Housing Starts: 1-Unit Structures Year over Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
HOUST1F_YoY4 Calc Privately Owned Housing Starts: 1-Unit Structures 4 Year over 4 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
HOUST1F_YoY5 Calc Privately Owned Housing Starts: 1-Unit Structures 5 Year over 5 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
HOUST1F_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Privately Owned Housing Starts: 1-Unit Structures /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
HOUST1F_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Privately Owned Housing Starts: 1-Unit Structures /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
HOUST1F_SmoothDer Calc Derivative of Smoothed Privately Owned Housing Starts: 1-Unit Structures /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
HOUST1F_Log Calc Log of Privately Owned Housing Starts: 1-Unit Structures log() -1.00 1959-01-01 2021-04-01 TRUE FALSE
HOUST1F_mva200 Calc Privately Owned Housing Starts: 1-Unit Structures 200 Day MA 200 Day MA -1.00 1959-01-01 2021-04-01 FALSE FALSE
HOUST1F_mva050 Calc Privately Owned Housing Starts: 1-Unit Structures 50 Day MA 50 Day MA -1.00 1959-01-01 2021-04-01 FALSE FALSE
GFDEBTN_YoY Calc Federal Debt: Total Public Debt Year over Year Percent -1.00 1966-01-01 2021-01-01 FALSE FALSE
GFDEBTN_YoY4 Calc Federal Debt: Total Public Debt 4 Year over 4 Year Percent -1.00 1966-01-01 2021-01-01 FALSE FALSE
GFDEBTN_YoY5 Calc Federal Debt: Total Public Debt 5 Year over 5 Year Percent -1.00 1966-01-01 2021-01-01 FALSE FALSE
GFDEBTN_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Federal Debt: Total Public Debt /period -1.00 1966-01-01 2021-01-01 FALSE FALSE
GFDEBTN_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Federal Debt: Total Public Debt /period -1.00 1966-01-01 2021-01-01 FALSE FALSE
GFDEBTN_SmoothDer Calc Derivative of Smoothed Federal Debt: Total Public Debt /period -1.00 1966-01-01 2021-01-01 TRUE FALSE
GFDEBTN_Log Calc Log of Federal Debt: Total Public Debt log() -1.00 1966-01-01 2021-01-01 TRUE TRUE
GFDEBTN_mva200 Calc Federal Debt: Total Public Debt 200 Day MA 200 Day MA -1.00 1966-01-01 2021-01-01 TRUE TRUE
GFDEBTN_mva050 Calc Federal Debt: Total Public Debt 50 Day MA 50 Day MA -1.00 1966-01-01 2021-01-01 TRUE TRUE
HOUST_YoY Calc Housing Starts: Total: New Privately Owned Housing Units Started Year over Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
HOUST_YoY4 Calc Housing Starts: Total: New Privately Owned Housing Units Started 4 Year over 4 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
HOUST_YoY5 Calc Housing Starts: Total: New Privately Owned Housing Units Started 5 Year over 5 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
HOUST_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Housing Starts: Total: New Privately Owned Housing Units Started /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
HOUST_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Housing Starts: Total: New Privately Owned Housing Units Started /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
HOUST_SmoothDer Calc Derivative of Smoothed Housing Starts: Total: New Privately Owned Housing Units Started /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
HOUST_Log Calc Log of Housing Starts: Total: New Privately Owned Housing Units Started log() -1.00 1959-01-01 2021-04-01 TRUE FALSE
HOUST_mva200 Calc Housing Starts: Total: New Privately Owned Housing Units Started 200 Day MA 200 Day MA -1.00 1959-01-01 2021-04-01 FALSE FALSE
HOUST_mva050 Calc Housing Starts: Total: New Privately Owned Housing Units Started 50 Day MA 50 Day MA -1.00 1959-01-01 2021-04-01 FALSE FALSE
MSPUS_YoY Calc Median Sales Price of Houses Sold for the United States Year over Year Percent -1.00 1963-01-01 2021-01-01 FALSE FALSE
MSPUS_YoY4 Calc Median Sales Price of Houses Sold for the United States 4 Year over 4 Year Percent -1.00 1963-01-01 2021-01-01 FALSE FALSE
MSPUS_YoY5 Calc Median Sales Price of Houses Sold for the United States 5 Year over 5 Year Percent -1.00 1963-01-01 2021-01-01 TRUE FALSE
MSPUS_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Median Sales Price of Houses Sold for the United States /period -1.00 1963-01-01 2021-01-01 TRUE FALSE
MSPUS_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Median Sales Price of Houses Sold for the United States /period -1.00 1963-01-01 2021-01-01 FALSE FALSE
MSPUS_SmoothDer Calc Derivative of Smoothed Median Sales Price of Houses Sold for the United States /period -1.00 1963-01-01 2021-01-01 FALSE FALSE
MSPUS_Log Calc Log of Median Sales Price of Houses Sold for the United States log() -1.00 1963-01-01 2021-01-01 TRUE FALSE
MSPUS_mva200 Calc Median Sales Price of Houses Sold for the United States 200 Day MA 200 Day MA -1.00 1963-01-01 2021-01-01 FALSE FALSE
MSPUS_mva050 Calc Median Sales Price of Houses Sold for the United States 50 Day MA 50 Day MA -1.00 1963-01-01 2021-01-01 TRUE FALSE
UMDMNO_YoY Calc Manufacturers’ New Orders: Durable Goods (NSA) Year over Year Percent -1.00 1992-02-01 2021-04-01 FALSE FALSE
UMDMNO_YoY4 Calc Manufacturers’ New Orders: Durable Goods (NSA) 4 Year over 4 Year Percent -1.00 1992-02-01 2021-04-01 TRUE FALSE
UMDMNO_YoY5 Calc Manufacturers’ New Orders: Durable Goods (NSA) 5 Year over 5 Year Percent -1.00 1992-02-01 2021-04-01 TRUE FALSE
UMDMNO_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Manufacturers’ New Orders: Durable Goods (NSA) /period -1.00 1992-02-01 2021-04-01 FALSE FALSE
UMDMNO_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Manufacturers’ New Orders: Durable Goods (NSA) /period -1.00 1992-02-01 2021-04-01 FALSE FALSE
UMDMNO_SmoothDer Calc Derivative of Smoothed Manufacturers’ New Orders: Durable Goods (NSA) /period -1.00 1992-02-01 2021-04-01 FALSE FALSE
UMDMNO_Log Calc Log of Manufacturers’ New Orders: Durable Goods (NSA) log() -1.00 1992-02-01 2021-04-01 TRUE FALSE
UMDMNO_mva200 Calc Manufacturers’ New Orders: Durable Goods (NSA) 200 Day MA 200 Day MA -1.00 1992-02-01 2021-04-01 TRUE TRUE
UMDMNO_mva050 Calc Manufacturers’ New Orders: Durable Goods (NSA) 50 Day MA 50 Day MA -1.00 1992-02-01 2021-04-01 FALSE FALSE
DGORDER_YoY Calc Manufacturers’ New Orders: Durable Goods (SA) Year over Year Percent -1.00 1992-02-01 2021-04-01 FALSE FALSE
DGORDER_YoY4 Calc Manufacturers’ New Orders: Durable Goods (SA) 4 Year over 4 Year Percent -1.00 1992-02-01 2021-04-01 FALSE FALSE
DGORDER_YoY5 Calc Manufacturers’ New Orders: Durable Goods (SA) 5 Year over 5 Year Percent -1.00 1992-02-01 2021-04-01 FALSE FALSE
DGORDER_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Manufacturers’ New Orders: Durable Goods (SA) /period -1.00 1992-02-01 2021-04-01 FALSE FALSE
DGORDER_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Manufacturers’ New Orders: Durable Goods (SA) /period -1.00 1992-02-01 2021-04-01 FALSE FALSE
DGORDER_SmoothDer Calc Derivative of Smoothed Manufacturers’ New Orders: Durable Goods (SA) /period -1.00 1992-02-01 2021-04-01 FALSE FALSE
DGORDER_Log Calc Log of Manufacturers’ New Orders: Durable Goods (SA) log() -1.00 1992-02-01 2021-04-01 TRUE FALSE
DGORDER_mva200 Calc Manufacturers’ New Orders: Durable Goods (SA) 200 Day MA 200 Day MA -1.00 1992-02-01 2021-04-01 TRUE TRUE
DGORDER_mva050 Calc Manufacturers’ New Orders: Durable Goods (SA) 50 Day MA 50 Day MA -1.00 1992-02-01 2021-04-01 FALSE FALSE
CSUSHPINSA_YoY Calc S&P/Case-Shiller U.S. National Home Price Index (NSA) Year over Year Percent -1.00 1987-01-01 2021-03-01 FALSE FALSE
CSUSHPINSA_YoY4 Calc S&P/Case-Shiller U.S. National Home Price Index (NSA) 4 Year over 4 Year Percent -1.00 1987-01-01 2021-03-01 FALSE FALSE
CSUSHPINSA_YoY5 Calc S&P/Case-Shiller U.S. National Home Price Index (NSA) 5 Year over 5 Year Percent -1.00 1987-01-01 2021-03-01 FALSE FALSE
CSUSHPINSA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) S&P/Case-Shiller U.S. National Home Price Index (NSA) /period -1.00 1987-01-01 2021-03-01 FALSE FALSE
CSUSHPINSA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) S&P/Case-Shiller U.S. National Home Price Index (NSA) /period -1.00 1987-01-01 2021-03-01 FALSE FALSE
CSUSHPINSA_SmoothDer Calc Derivative of Smoothed S&P/Case-Shiller U.S. National Home Price Index (NSA) /period -1.00 1987-01-01 2021-03-01 FALSE FALSE
CSUSHPINSA_Log Calc Log of S&P/Case-Shiller U.S. National Home Price Index (NSA) log() -1.00 1987-01-01 2021-03-01 TRUE TRUE
CSUSHPINSA_mva200 Calc S&P/Case-Shiller U.S. National Home Price Index (NSA) 200 Day MA 200 Day MA -1.00 1987-01-01 2021-03-01 TRUE TRUE
CSUSHPINSA_mva050 Calc S&P/Case-Shiller U.S. National Home Price Index (NSA) 50 Day MA 50 Day MA -1.00 1987-01-01 2021-03-01 TRUE TRUE
GFDEGDQ188S_YoY Calc Federal Debt: Total Public Debt as Percent of Gross Domestic Product Year over Year Percent -1.00 1966-01-01 2021-01-01 TRUE FALSE
GFDEGDQ188S_YoY4 Calc Federal Debt: Total Public Debt as Percent of Gross Domestic Product 4 Year over 4 Year Percent -1.00 1966-01-01 2021-01-01 FALSE FALSE
GFDEGDQ188S_YoY5 Calc Federal Debt: Total Public Debt as Percent of Gross Domestic Product 5 Year over 5 Year Percent -1.00 1966-01-01 2021-01-01 FALSE FALSE
GFDEGDQ188S_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Federal Debt: Total Public Debt as Percent of Gross Domestic Product /period -1.00 1966-01-01 2021-01-01 TRUE FALSE
GFDEGDQ188S_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Federal Debt: Total Public Debt as Percent of Gross Domestic Product /period -1.00 1966-01-01 2021-01-01 FALSE FALSE
GFDEGDQ188S_SmoothDer Calc Derivative of Smoothed Federal Debt: Total Public Debt as Percent of Gross Domestic Product /period -1.00 1966-01-01 2021-01-01 TRUE TRUE
GFDEGDQ188S_Log Calc Log of Federal Debt: Total Public Debt as Percent of Gross Domestic Product log() -1.00 1966-01-01 2021-01-01 TRUE FALSE
GFDEGDQ188S_mva200 Calc Federal Debt: Total Public Debt as Percent of Gross Domestic Product 200 Day MA 200 Day MA -1.00 1966-01-01 2021-01-01 FALSE FALSE
GFDEGDQ188S_mva050 Calc Federal Debt: Total Public Debt as Percent of Gross Domestic Product 50 Day MA 50 Day MA -1.00 1966-01-01 2021-01-01 TRUE FALSE
FYFSD_YoY Calc Federal Surplus or Deficit Year over Year Percent -1.00 1901-06-30 2020-09-30 FALSE FALSE
FYFSD_YoY4 Calc Federal Surplus or Deficit 4 Year over 4 Year Percent -1.00 1901-06-30 2020-09-30 FALSE FALSE
FYFSD_YoY5 Calc Federal Surplus or Deficit 5 Year over 5 Year Percent -1.00 1901-06-30 2020-09-30 FALSE FALSE
FYFSD_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Federal Surplus or Deficit /period -1.00 1901-06-30 2020-09-30 FALSE FALSE
FYFSD_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Federal Surplus or Deficit /period -1.00 1901-06-30 2020-09-30 FALSE FALSE
FYFSD_SmoothDer Calc Derivative of Smoothed Federal Surplus or Deficit /period -1.00 1901-06-30 2020-09-30 TRUE TRUE
FYFSD_Log Calc Log of Federal Surplus or Deficit log() -1.00 1901-06-30 2020-09-30 TRUE TRUE
FYFSD_mva200 Calc Federal Surplus or Deficit 200 Day MA 200 Day MA -1.00 1901-06-30 2020-09-30 TRUE FALSE
FYFSD_mva050 Calc Federal Surplus or Deficit 50 Day MA 50 Day MA -1.00 1901-06-30 2020-09-30 TRUE TRUE
FYFSGDA188S_YoY Calc Federal Surplus or Deficit [-] as Percent of Gross Domestic Product Year over Year Percent -1.00 1929-01-01 2020-01-01 TRUE FALSE
FYFSGDA188S_YoY4 Calc Federal Surplus or Deficit [-] as Percent of Gross Domestic Product 4 Year over 4 Year Percent -1.00 1929-01-01 2020-01-01 FALSE FALSE
FYFSGDA188S_YoY5 Calc Federal Surplus or Deficit [-] as Percent of Gross Domestic Product 5 Year over 5 Year Percent -1.00 1929-01-01 2020-01-01 FALSE FALSE
FYFSGDA188S_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Federal Surplus or Deficit [-] as Percent of Gross Domestic Product /period -1.00 1929-01-01 2020-01-01 FALSE FALSE
FYFSGDA188S_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Federal Surplus or Deficit [-] as Percent of Gross Domestic Product /period -1.00 1929-01-01 2020-01-01 TRUE TRUE
FYFSGDA188S_SmoothDer Calc Derivative of Smoothed Federal Surplus or Deficit [-] as Percent of Gross Domestic Product /period -1.00 1929-01-01 2020-01-01 FALSE FALSE
FYFSGDA188S_Log Calc Log of Federal Surplus or Deficit [-] as Percent of Gross Domestic Product log() -1.00 1929-01-01 2020-01-01 TRUE TRUE
FYFSGDA188S_mva200 Calc Federal Surplus or Deficit [-] as Percent of Gross Domestic Product 200 Day MA 200 Day MA -1.00 1929-01-01 2020-01-01 TRUE TRUE
FYFSGDA188S_mva050 Calc Federal Surplus or Deficit [-] as Percent of Gross Domestic Product 50 Day MA 50 Day MA -1.00 1929-01-01 2020-01-01 TRUE TRUE
GOLDAMGBD228NLBM_YoY Calc Gold Fixing Price 10:30 A.M. (London time) in London Bullion Market Year over Year Percent -1.00 1968-04-01 2021-06-11 FALSE FALSE
GOLDAMGBD228NLBM_YoY4 Calc Gold Fixing Price 10:30 A.M. (London time) in London Bullion Market 4 Year over 4 Year Percent -1.00 1968-04-01 2021-06-11 FALSE FALSE
GOLDAMGBD228NLBM_YoY5 Calc Gold Fixing Price 10:30 A.M. (London time) in London Bullion Market 5 Year over 5 Year Percent -1.00 1968-04-01 2021-06-11 FALSE FALSE
GOLDAMGBD228NLBM_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Gold Fixing Price 10:30 A.M. (London time) in London Bullion Market /period -1.00 1968-04-01 2021-06-11 TRUE TRUE
GOLDAMGBD228NLBM_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Gold Fixing Price 10:30 A.M. (London time) in London Bullion Market /period -1.00 1968-04-01 2021-06-11 FALSE FALSE
GOLDAMGBD228NLBM_SmoothDer Calc Derivative of Smoothed Gold Fixing Price 10:30 A.M. (London time) in London Bullion Market /period -1.00 1968-04-01 2021-06-11 TRUE TRUE
GOLDAMGBD228NLBM_Log Calc Log of Gold Fixing Price 10:30 A.M. (London time) in London Bullion Market log() -1.00 1968-04-01 2021-06-11 FALSE FALSE
GOLDAMGBD228NLBM_mva200 Calc Gold Fixing Price 10:30 A.M. (London time) in London Bullion Market 200 Day MA 200 Day MA -1.00 1968-04-01 2021-06-11 TRUE FALSE
GOLDAMGBD228NLBM_mva050 Calc Gold Fixing Price 10:30 A.M. (London time) in London Bullion Market 50 Day MA 50 Day MA -1.00 1968-04-01 2021-06-11 TRUE FALSE
GDX.Open_YoY Calc Year over Year Percent -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-05-22 2021-06-11 TRUE FALSE
GDX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-05-22 2021-06-11 TRUE TRUE
GDX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-05-22 2021-06-11 TRUE TRUE
GDX.Open_Log Calc Log of log() -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-05-22 2021-06-11 TRUE FALSE
GDX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-05-22 2021-06-11 TRUE TRUE
GDX.High_YoY Calc Year over Year Percent -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-05-22 2021-06-11 TRUE TRUE
GDX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-05-22 2021-06-11 TRUE TRUE
GDX.High_Log Calc Log of log() -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-05-22 2021-06-11 TRUE FALSE
GDX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-05-22 2021-06-11 TRUE TRUE
GDX.Low_YoY Calc Year over Year Percent -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-05-22 2021-06-11 TRUE TRUE
GDX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-05-22 2021-06-11 TRUE TRUE
GDX.Low_Log Calc Log of log() -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-05-22 2021-06-11 TRUE FALSE
GDX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-05-22 2021-06-11 TRUE TRUE
GDX.Close_YoY Calc Year over Year Percent -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-05-22 2021-06-11 TRUE TRUE
GDX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-05-22 2021-06-11 TRUE TRUE
GDX.Close_Log Calc Log of log() -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-05-22 2021-06-11 TRUE FALSE
GDX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-05-22 2021-06-11 TRUE TRUE
GDX.Volume_YoY Calc Year over Year Percent -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Volume_Log Calc Log of log() -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Adjusted_YoY Calc Year over Year Percent -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-05-22 2021-06-11 TRUE TRUE
GDX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-05-22 2021-06-11 TRUE TRUE
GDX.Adjusted_Log Calc Log of log() -1.00 2006-05-22 2021-06-11 FALSE FALSE
GDX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-05-22 2021-06-11 TRUE FALSE
GDX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-05-22 2021-06-11 TRUE TRUE
XLE.Open_YoY Calc Year over Year Percent -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1998-12-22 2021-06-11 TRUE TRUE
XLE.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Open_Log Calc Log of log() -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1998-12-22 2021-06-11 TRUE TRUE
XLE.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1998-12-22 2021-06-11 TRUE TRUE
XLE.High_YoY Calc Year over Year Percent -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.High_Log Calc Log of log() -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1998-12-22 2021-06-11 TRUE TRUE
XLE.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1998-12-22 2021-06-11 TRUE TRUE
XLE.Low_YoY Calc Year over Year Percent -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1998-12-22 2021-06-11 TRUE TRUE
XLE.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1998-12-22 2021-06-11 TRUE TRUE
XLE.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Low_Log Calc Log of log() -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1998-12-22 2021-06-11 TRUE TRUE
XLE.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1998-12-22 2021-06-11 TRUE TRUE
XLE.Close_YoY Calc Year over Year Percent -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1998-12-22 2021-06-11 TRUE TRUE
XLE.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Close_Log Calc Log of log() -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1998-12-22 2021-06-11 TRUE TRUE
XLE.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1998-12-22 2021-06-11 TRUE TRUE
XLE.Volume_YoY Calc Year over Year Percent -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Volume_Log Calc Log of log() -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Adjusted_YoY Calc Year over Year Percent -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1998-12-22 2021-06-11 TRUE TRUE
XLE.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Adjusted_Log Calc Log of log() -1.00 1998-12-22 2021-06-11 FALSE FALSE
XLE.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1998-12-22 2021-06-11 TRUE TRUE
XLE.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1998-12-22 2021-06-11 TRUE TRUE
GSG.Open_YoY Calc Year over Year Percent -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.Open_Log Calc Log of log() -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.High_YoY Calc Year over Year Percent -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-07-21 2021-06-11 TRUE FALSE
GSG.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.High_Log Calc Log of log() -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Low_YoY Calc Year over Year Percent -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-07-21 2021-06-11 TRUE FALSE
GSG.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.Low_Log Calc Log of log() -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Close_YoY Calc Year over Year Percent -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-07-21 2021-06-11 TRUE FALSE
GSG.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.Close_Log Calc Log of log() -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Volume_YoY Calc Year over Year Percent -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.Volume_Log Calc Log of log() -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.Adjusted_YoY Calc Year over Year Percent -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-07-21 2021-06-11 TRUE FALSE
GSG.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-07-21 2021-06-11 FALSE FALSE
GSG.Adjusted_Log Calc Log of log() -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-07-21 2021-06-11 TRUE TRUE
GSG.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-07-21 2021-06-11 TRUE TRUE
WALCL_YoY Calc All Federal Reserve Banks: Total Assets Year over Year Percent -1.00 2002-12-18 2021-06-09 FALSE FALSE
WALCL_YoY4 Calc All Federal Reserve Banks: Total Assets 4 Year over 4 Year Percent -1.00 2002-12-18 2021-06-09 FALSE FALSE
WALCL_YoY5 Calc All Federal Reserve Banks: Total Assets 5 Year over 5 Year Percent -1.00 2002-12-18 2021-06-09 FALSE FALSE
WALCL_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) All Federal Reserve Banks: Total Assets /period -1.00 2002-12-18 2021-06-09 TRUE TRUE
WALCL_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) All Federal Reserve Banks: Total Assets /period -1.00 2002-12-18 2021-06-09 FALSE FALSE
WALCL_SmoothDer Calc Derivative of Smoothed All Federal Reserve Banks: Total Assets /period -1.00 2002-12-18 2021-06-09 TRUE TRUE
WALCL_Log Calc Log of All Federal Reserve Banks: Total Assets log() -1.00 2002-12-18 2021-06-09 TRUE TRUE
WALCL_mva200 Calc All Federal Reserve Banks: Total Assets 200 Day MA 200 Day MA -1.00 2002-12-18 2021-06-09 TRUE TRUE
WALCL_mva050 Calc All Federal Reserve Banks: Total Assets 50 Day MA 50 Day MA -1.00 2002-12-18 2021-06-09 TRUE TRUE
OUTMS_YoY Calc Manufacturing Sector: Real Output Year over Year Percent -1.00 1987-01-01 2021-01-01 FALSE FALSE
OUTMS_YoY4 Calc Manufacturing Sector: Real Output 4 Year over 4 Year Percent -1.00 1987-01-01 2021-01-01 TRUE TRUE
OUTMS_YoY5 Calc Manufacturing Sector: Real Output 5 Year over 5 Year Percent -1.00 1987-01-01 2021-01-01 FALSE FALSE
OUTMS_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Manufacturing Sector: Real Output /period -1.00 1987-01-01 2021-01-01 TRUE TRUE
OUTMS_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Manufacturing Sector: Real Output /period -1.00 1987-01-01 2021-01-01 FALSE FALSE
OUTMS_SmoothDer Calc Derivative of Smoothed Manufacturing Sector: Real Output /period -1.00 1987-01-01 2021-01-01 FALSE FALSE
OUTMS_Log Calc Log of Manufacturing Sector: Real Output log() -1.00 1987-01-01 2021-01-01 TRUE TRUE
OUTMS_mva200 Calc Manufacturing Sector: Real Output 200 Day MA 200 Day MA -1.00 1987-01-01 2021-01-01 TRUE TRUE
OUTMS_mva050 Calc Manufacturing Sector: Real Output 50 Day MA 50 Day MA -1.00 1987-01-01 2021-01-01 TRUE TRUE
MANEMP_YoY Calc All Employees: Manufacturing Year over Year Percent -1.00 1939-01-01 2021-05-01 FALSE FALSE
MANEMP_YoY4 Calc All Employees: Manufacturing 4 Year over 4 Year Percent -1.00 1939-01-01 2021-05-01 FALSE FALSE
MANEMP_YoY5 Calc All Employees: Manufacturing 5 Year over 5 Year Percent -1.00 1939-01-01 2021-05-01 FALSE FALSE
MANEMP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) All Employees: Manufacturing /period -1.00 1939-01-01 2021-05-01 FALSE FALSE
MANEMP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) All Employees: Manufacturing /period -1.00 1939-01-01 2021-05-01 FALSE FALSE
MANEMP_SmoothDer Calc Derivative of Smoothed All Employees: Manufacturing /period -1.00 1939-01-01 2021-05-01 FALSE FALSE
MANEMP_Log Calc Log of All Employees: Manufacturing log() -1.00 1939-01-01 2021-05-01 TRUE FALSE
MANEMP_mva200 Calc All Employees: Manufacturing 200 Day MA 200 Day MA -1.00 1939-01-01 2021-05-01 TRUE TRUE
MANEMP_mva050 Calc All Employees: Manufacturing 50 Day MA 50 Day MA -1.00 1939-01-01 2021-05-01 TRUE TRUE
PRS30006163_YoY Calc Manufacturing Sector: Real Output Per Person Year over Year Percent -1.00 1987-01-01 2021-01-01 FALSE FALSE
PRS30006163_YoY4 Calc Manufacturing Sector: Real Output Per Person 4 Year over 4 Year Percent -1.00 1987-01-01 2021-01-01 TRUE TRUE
PRS30006163_YoY5 Calc Manufacturing Sector: Real Output Per Person 5 Year over 5 Year Percent -1.00 1987-01-01 2021-01-01 TRUE TRUE
PRS30006163_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Manufacturing Sector: Real Output Per Person /period -1.00 1987-01-01 2021-01-01 TRUE TRUE
PRS30006163_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Manufacturing Sector: Real Output Per Person /period -1.00 1987-01-01 2021-01-01 FALSE FALSE
PRS30006163_SmoothDer Calc Derivative of Smoothed Manufacturing Sector: Real Output Per Person /period -1.00 1987-01-01 2021-01-01 FALSE FALSE
PRS30006163_Log Calc Log of Manufacturing Sector: Real Output Per Person log() -1.00 1987-01-01 2021-01-01 TRUE TRUE
PRS30006163_mva200 Calc Manufacturing Sector: Real Output Per Person 200 Day MA 200 Day MA -1.00 1987-01-01 2021-01-01 TRUE TRUE
PRS30006163_mva050 Calc Manufacturing Sector: Real Output Per Person 50 Day MA 50 Day MA -1.00 1987-01-01 2021-01-01 TRUE TRUE
BAMLC0A3CA_YoY Calc ICE BofAML US Corporate A Option-Adjusted Spread Year over Year Percent -1.00 1996-12-31 2021-06-10 FALSE FALSE
BAMLC0A3CA_YoY4 Calc ICE BofAML US Corporate A Option-Adjusted Spread 4 Year over 4 Year Percent -1.00 1996-12-31 2021-06-10 FALSE FALSE
BAMLC0A3CA_YoY5 Calc ICE BofAML US Corporate A Option-Adjusted Spread 5 Year over 5 Year Percent -1.00 1996-12-31 2021-06-10 FALSE FALSE
BAMLC0A3CA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) ICE BofAML US Corporate A Option-Adjusted Spread /period -1.00 1996-12-31 2021-06-10 FALSE FALSE
BAMLC0A3CA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) ICE BofAML US Corporate A Option-Adjusted Spread /period -1.00 1996-12-31 2021-06-10 FALSE FALSE
BAMLC0A3CA_SmoothDer Calc Derivative of Smoothed ICE BofAML US Corporate A Option-Adjusted Spread /period -1.00 1996-12-31 2021-06-10 TRUE TRUE
BAMLC0A3CA_Log Calc Log of ICE BofAML US Corporate A Option-Adjusted Spread log() -1.00 1996-12-31 2021-06-10 FALSE FALSE
BAMLC0A3CA_mva200 Calc ICE BofAML US Corporate A Option-Adjusted Spread 200 Day MA 200 Day MA -1.00 1996-12-31 2021-06-10 FALSE FALSE
BAMLC0A3CA_mva050 Calc ICE BofAML US Corporate A Option-Adjusted Spread 50 Day MA 50 Day MA -1.00 1996-12-31 2021-06-10 FALSE FALSE
AAA_YoY Calc Moody’s Seasoned Aaa Corporate Bond Yield Year over Year Percent -1.00 1919-01-01 2021-05-01 TRUE TRUE
AAA_YoY4 Calc Moody’s Seasoned Aaa Corporate Bond Yield 4 Year over 4 Year Percent -1.00 1919-01-01 2021-05-01 FALSE FALSE
AAA_YoY5 Calc Moody’s Seasoned Aaa Corporate Bond Yield 5 Year over 5 Year Percent -1.00 1919-01-01 2021-05-01 TRUE TRUE
AAA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Moody’s Seasoned Aaa Corporate Bond Yield /period -1.00 1919-01-01 2021-05-01 FALSE FALSE
AAA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Moody’s Seasoned Aaa Corporate Bond Yield /period -1.00 1919-01-01 2021-05-01 FALSE FALSE
AAA_SmoothDer Calc Derivative of Smoothed Moody’s Seasoned Aaa Corporate Bond Yield /period -1.00 1919-01-01 2021-05-01 FALSE FALSE
AAA_Log Calc Log of Moody’s Seasoned Aaa Corporate Bond Yield log() -1.00 1919-01-01 2021-05-01 TRUE FALSE
AAA_mva200 Calc Moody’s Seasoned Aaa Corporate Bond Yield 200 Day MA 200 Day MA -1.00 1919-01-01 2021-05-01 TRUE TRUE
AAA_mva050 Calc Moody’s Seasoned Aaa Corporate Bond Yield 50 Day MA 50 Day MA -1.00 1919-01-01 2021-05-01 TRUE FALSE
SOFR_YoY Calc Secured Overnight Financing Rate Year over Year Percent -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR_YoY4 Calc Secured Overnight Financing Rate 4 Year over 4 Year Percent -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR_YoY5 Calc Secured Overnight Financing Rate 5 Year over 5 Year Percent -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Secured Overnight Financing Rate /period -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Secured Overnight Financing Rate /period -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR_SmoothDer Calc Derivative of Smoothed Secured Overnight Financing Rate /period -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR_Log Calc Log of Secured Overnight Financing Rate log() -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR_mva200 Calc Secured Overnight Financing Rate 200 Day MA 200 Day MA -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR_mva050 Calc Secured Overnight Financing Rate 50 Day MA 50 Day MA -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFRVOL_YoY Calc Secured Overnight Financing Volume Year over Year Percent -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFRVOL_YoY4 Calc Secured Overnight Financing Volume 4 Year over 4 Year Percent -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFRVOL_YoY5 Calc Secured Overnight Financing Volume 5 Year over 5 Year Percent -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFRVOL_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Secured Overnight Financing Volume /period -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFRVOL_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Secured Overnight Financing Volume /period -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFRVOL_SmoothDer Calc Derivative of Smoothed Secured Overnight Financing Volume /period -1.00 2018-04-03 2021-06-10 TRUE TRUE
SOFRVOL_Log Calc Log of Secured Overnight Financing Volume log() -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFRVOL_mva200 Calc Secured Overnight Financing Volume 200 Day MA 200 Day MA -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFRVOL_mva050 Calc Secured Overnight Financing Volume 50 Day MA 50 Day MA -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR99_YoY Calc Secured Overnight Financing Rate: 99th Percentile Year over Year Percent -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR99_YoY4 Calc Secured Overnight Financing Rate: 99th Percentile 4 Year over 4 Year Percent -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR99_YoY5 Calc Secured Overnight Financing Rate: 99th Percentile 5 Year over 5 Year Percent -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR99_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Secured Overnight Financing Rate: 99th Percentile /period -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR99_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Secured Overnight Financing Rate: 99th Percentile /period -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR99_SmoothDer Calc Derivative of Smoothed Secured Overnight Financing Rate: 99th Percentile /period -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR99_Log Calc Log of Secured Overnight Financing Rate: 99th Percentile log() -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR99_mva200 Calc Secured Overnight Financing Rate: 99th Percentile 200 Day MA 200 Day MA -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR99_mva050 Calc Secured Overnight Financing Rate: 99th Percentile 50 Day MA 50 Day MA -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR75_YoY Calc Secured Overnight Financing Rate: 75th Percentile Year over Year Percent -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR75_YoY4 Calc Secured Overnight Financing Rate: 75th Percentile 4 Year over 4 Year Percent -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR75_YoY5 Calc Secured Overnight Financing Rate: 75th Percentile 5 Year over 5 Year Percent -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR75_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Secured Overnight Financing Rate: 75th Percentile /period -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR75_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Secured Overnight Financing Rate: 75th Percentile /period -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR75_SmoothDer Calc Derivative of Smoothed Secured Overnight Financing Rate: 75th Percentile /period -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR75_Log Calc Log of Secured Overnight Financing Rate: 75th Percentile log() -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR75_mva200 Calc Secured Overnight Financing Rate: 75th Percentile 200 Day MA 200 Day MA -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR75_mva050 Calc Secured Overnight Financing Rate: 75th Percentile 50 Day MA 50 Day MA -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR25_YoY Calc Secured Overnight Financing Rate: 25th Percentile Year over Year Percent -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR25_YoY4 Calc Secured Overnight Financing Rate: 25th Percentile 4 Year over 4 Year Percent -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR25_YoY5 Calc Secured Overnight Financing Rate: 25th Percentile 5 Year over 5 Year Percent -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR25_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Secured Overnight Financing Rate: 25th Percentile /period -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR25_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Secured Overnight Financing Rate: 25th Percentile /period -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR25_SmoothDer Calc Derivative of Smoothed Secured Overnight Financing Rate: 25th Percentile /period -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR25_Log Calc Log of Secured Overnight Financing Rate: 25th Percentile log() -1.00 2018-04-03 2021-06-10 TRUE TRUE
SOFR25_mva200 Calc Secured Overnight Financing Rate: 25th Percentile 200 Day MA 200 Day MA -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR25_mva050 Calc Secured Overnight Financing Rate: 25th Percentile 50 Day MA 50 Day MA -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR1_YoY Calc Secured Overnight Financing Rate: 1st Percentile Year over Year Percent -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR1_YoY4 Calc Secured Overnight Financing Rate: 1st Percentile 4 Year over 4 Year Percent -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR1_YoY5 Calc Secured Overnight Financing Rate: 1st Percentile 5 Year over 5 Year Percent -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR1_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Secured Overnight Financing Rate: 1st Percentile /period -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR1_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Secured Overnight Financing Rate: 1st Percentile /period -1.00 2018-04-03 2021-06-10 TRUE FALSE
SOFR1_SmoothDer Calc Derivative of Smoothed Secured Overnight Financing Rate: 1st Percentile /period -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR1_Log Calc Log of Secured Overnight Financing Rate: 1st Percentile log() -1.00 2018-04-03 2021-06-10 TRUE TRUE
SOFR1_mva200 Calc Secured Overnight Financing Rate: 1st Percentile 200 Day MA 200 Day MA -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR1_mva050 Calc Secured Overnight Financing Rate: 1st Percentile 50 Day MA 50 Day MA -1.00 2018-04-03 2021-06-10 FALSE FALSE
OBFR_YoY Calc Overnight Bank Funding Rate Year over Year Percent -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR_YoY4 Calc Overnight Bank Funding Rate 4 Year over 4 Year Percent -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR_YoY5 Calc Overnight Bank Funding Rate 5 Year over 5 Year Percent -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Overnight Bank Funding Rate /period -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Overnight Bank Funding Rate /period -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR_SmoothDer Calc Derivative of Smoothed Overnight Bank Funding Rate /period -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR_Log Calc Log of Overnight Bank Funding Rate log() -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR_mva200 Calc Overnight Bank Funding Rate 200 Day MA 200 Day MA -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR_mva050 Calc Overnight Bank Funding Rate 50 Day MA 50 Day MA -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR99_YoY Calc Overnight Bank Funding Rate: 99th Percentile Year over Year Percent -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR99_YoY4 Calc Overnight Bank Funding Rate: 99th Percentile 4 Year over 4 Year Percent -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR99_YoY5 Calc Overnight Bank Funding Rate: 99th Percentile 5 Year over 5 Year Percent -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR99_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Overnight Bank Funding Rate: 99th Percentile /period -1.00 2016-03-01 2021-06-10 TRUE FALSE
OBFR99_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Overnight Bank Funding Rate: 99th Percentile /period -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR99_SmoothDer Calc Derivative of Smoothed Overnight Bank Funding Rate: 99th Percentile /period -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR99_Log Calc Log of Overnight Bank Funding Rate: 99th Percentile log() -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR99_mva200 Calc Overnight Bank Funding Rate: 99th Percentile 200 Day MA 200 Day MA -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR99_mva050 Calc Overnight Bank Funding Rate: 99th Percentile 50 Day MA 50 Day MA -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR75_YoY Calc Overnight Bank Funding Rate: 75th Percentile Year over Year Percent -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR75_YoY4 Calc Overnight Bank Funding Rate: 75th Percentile 4 Year over 4 Year Percent -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR75_YoY5 Calc Overnight Bank Funding Rate: 75th Percentile 5 Year over 5 Year Percent -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR75_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Overnight Bank Funding Rate: 75th Percentile /period -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR75_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Overnight Bank Funding Rate: 75th Percentile /period -1.00 2016-03-01 2021-06-10 TRUE FALSE
OBFR75_SmoothDer Calc Derivative of Smoothed Overnight Bank Funding Rate: 75th Percentile /period -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR75_Log Calc Log of Overnight Bank Funding Rate: 75th Percentile log() -1.00 2016-03-01 2021-06-10 TRUE FALSE
OBFR75_mva200 Calc Overnight Bank Funding Rate: 75th Percentile 200 Day MA 200 Day MA -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR75_mva050 Calc Overnight Bank Funding Rate: 75th Percentile 50 Day MA 50 Day MA -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR25_YoY Calc Overnight Bank Funding Rate: 25th Percentile Year over Year Percent -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR25_YoY4 Calc Overnight Bank Funding Rate: 25th Percentile 4 Year over 4 Year Percent -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR25_YoY5 Calc Overnight Bank Funding Rate: 25th Percentile 5 Year over 5 Year Percent -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR25_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Overnight Bank Funding Rate: 25th Percentile /period -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR25_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Overnight Bank Funding Rate: 25th Percentile /period -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR25_SmoothDer Calc Derivative of Smoothed Overnight Bank Funding Rate: 25th Percentile /period -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR25_Log Calc Log of Overnight Bank Funding Rate: 25th Percentile log() -1.00 2016-03-01 2021-06-10 TRUE FALSE
OBFR25_mva200 Calc Overnight Bank Funding Rate: 25th Percentile 200 Day MA 200 Day MA -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR25_mva050 Calc Overnight Bank Funding Rate: 25th Percentile 50 Day MA 50 Day MA -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR1_YoY Calc Overnight Bank Funding Rate: 1st Percentile Year over Year Percent -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR1_YoY4 Calc Overnight Bank Funding Rate: 1st Percentile 4 Year over 4 Year Percent -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR1_YoY5 Calc Overnight Bank Funding Rate: 1st Percentile 5 Year over 5 Year Percent -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR1_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Overnight Bank Funding Rate: 1st Percentile /period -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR1_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Overnight Bank Funding Rate: 1st Percentile /period -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR1_SmoothDer Calc Derivative of Smoothed Overnight Bank Funding Rate: 1st Percentile /period -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR1_Log Calc Log of Overnight Bank Funding Rate: 1st Percentile log() -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR1_mva200 Calc Overnight Bank Funding Rate: 1st Percentile 200 Day MA 200 Day MA -1.00 2016-03-01 2021-06-10 FALSE FALSE
OBFR1_mva050 Calc Overnight Bank Funding Rate: 1st Percentile 50 Day MA 50 Day MA -1.00 2016-03-01 2021-06-10 FALSE FALSE
RPONTSYD_YoY Calc Overnight Repurchase Agreements: Treasury Securities Purchased by the Federal Reserve in the Temporary Open Market Operations Year over Year Percent -1.00 2000-01-03 2021-06-11 FALSE FALSE
RPONTSYD_YoY4 Calc Overnight Repurchase Agreements: Treasury Securities Purchased by the Federal Reserve in the Temporary Open Market Operations 4 Year over 4 Year Percent -1.00 2000-01-03 2021-06-11 FALSE FALSE
RPONTSYD_YoY5 Calc Overnight Repurchase Agreements: Treasury Securities Purchased by the Federal Reserve in the Temporary Open Market Operations 5 Year over 5 Year Percent -1.00 2000-01-03 2021-06-11 FALSE FALSE
RPONTSYD_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Overnight Repurchase Agreements: Treasury Securities Purchased by the Federal Reserve in the Temporary Open Market Operations /period -1.00 2000-01-03 2021-06-11 FALSE FALSE
RPONTSYD_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Overnight Repurchase Agreements: Treasury Securities Purchased by the Federal Reserve in the Temporary Open Market Operations /period -1.00 2000-01-03 2021-06-11 FALSE FALSE
RPONTSYD_SmoothDer Calc Derivative of Smoothed Overnight Repurchase Agreements: Treasury Securities Purchased by the Federal Reserve in the Temporary Open Market Operations /period -1.00 2000-01-03 2021-06-11 FALSE FALSE
RPONTSYD_Log Calc Log of Overnight Repurchase Agreements: Treasury Securities Purchased by the Federal Reserve in the Temporary Open Market Operations log() -1.00 2000-01-03 2021-06-11 TRUE TRUE
RPONTSYD_mva200 Calc Overnight Repurchase Agreements: Treasury Securities Purchased by the Federal Reserve in the Temporary Open Market Operations 200 Day MA 200 Day MA -1.00 2000-01-03 2021-06-11 TRUE FALSE
RPONTSYD_mva050 Calc Overnight Repurchase Agreements: Treasury Securities Purchased by the Federal Reserve in the Temporary Open Market Operations 50 Day MA 50 Day MA -1.00 2000-01-03 2021-06-11 TRUE TRUE
IOER_YoY Calc Interest Rate on Excess Reserves Year over Year Percent -1.00 2008-10-09 2021-06-14 TRUE TRUE
IOER_YoY4 Calc Interest Rate on Excess Reserves 4 Year over 4 Year Percent -1.00 2008-10-09 2021-06-14 FALSE FALSE
IOER_YoY5 Calc Interest Rate on Excess Reserves 5 Year over 5 Year Percent -1.00 2008-10-09 2021-06-14 TRUE TRUE
IOER_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Interest Rate on Excess Reserves /period -1.00 2008-10-09 2021-06-14 FALSE FALSE
IOER_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Interest Rate on Excess Reserves /period -1.00 2008-10-09 2021-06-14 FALSE FALSE
IOER_SmoothDer Calc Derivative of Smoothed Interest Rate on Excess Reserves /period -1.00 2008-10-09 2021-06-14 FALSE FALSE
IOER_Log Calc Log of Interest Rate on Excess Reserves log() -1.00 2008-10-09 2021-06-14 TRUE TRUE
IOER_mva200 Calc Interest Rate on Excess Reserves 200 Day MA 200 Day MA -1.00 2008-10-09 2021-06-14 TRUE TRUE
IOER_mva050 Calc Interest Rate on Excess Reserves 50 Day MA 50 Day MA -1.00 2008-10-09 2021-06-14 TRUE TRUE
WRESBAL_YoY Calc Reserve Balances with Federal Reserve Banks Year over Year Percent -1.00 1984-01-04 2021-06-09 TRUE FALSE
WRESBAL_YoY4 Calc Reserve Balances with Federal Reserve Banks 4 Year over 4 Year Percent -1.00 1984-01-04 2021-06-09 FALSE FALSE
WRESBAL_YoY5 Calc Reserve Balances with Federal Reserve Banks 5 Year over 5 Year Percent -1.00 1984-01-04 2021-06-09 FALSE FALSE
WRESBAL_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Reserve Balances with Federal Reserve Banks /period -1.00 1984-01-04 2021-06-09 TRUE TRUE
WRESBAL_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Reserve Balances with Federal Reserve Banks /period -1.00 1984-01-04 2021-06-09 FALSE FALSE
WRESBAL_SmoothDer Calc Derivative of Smoothed Reserve Balances with Federal Reserve Banks /period -1.00 1984-01-04 2021-06-09 TRUE TRUE
WRESBAL_Log Calc Log of Reserve Balances with Federal Reserve Banks log() -1.00 1984-01-04 2021-06-09 FALSE FALSE
WRESBAL_mva200 Calc Reserve Balances with Federal Reserve Banks 200 Day MA 200 Day MA -1.00 1984-01-04 2021-06-09 TRUE TRUE
WRESBAL_mva050 Calc Reserve Balances with Federal Reserve Banks 50 Day MA 50 Day MA -1.00 1984-01-04 2021-06-09 FALSE FALSE
EXCSRESNW_YoY Calc Excess Reserves of Depository Institutions Year over Year Percent -1.00 1984-02-08 2020-09-09 TRUE FALSE
EXCSRESNW_YoY4 Calc Excess Reserves of Depository Institutions 4 Year over 4 Year Percent -1.00 1984-02-08 2020-09-09 FALSE FALSE
EXCSRESNW_YoY5 Calc Excess Reserves of Depository Institutions 5 Year over 5 Year Percent -1.00 1984-02-08 2020-09-09 FALSE FALSE
EXCSRESNW_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Excess Reserves of Depository Institutions /period -1.00 1984-02-08 2020-09-09 FALSE FALSE
EXCSRESNW_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Excess Reserves of Depository Institutions /period -1.00 1984-02-08 2020-09-09 FALSE FALSE
EXCSRESNW_SmoothDer Calc Derivative of Smoothed Excess Reserves of Depository Institutions /period -1.00 1984-02-08 2020-09-09 TRUE TRUE
EXCSRESNW_Log Calc Log of Excess Reserves of Depository Institutions log() -1.00 1984-02-08 2020-09-09 TRUE TRUE
EXCSRESNW_mva200 Calc Excess Reserves of Depository Institutions 200 Day MA 200 Day MA -1.00 1984-02-08 2020-09-09 TRUE FALSE
EXCSRESNW_mva050 Calc Excess Reserves of Depository Institutions 50 Day MA 50 Day MA -1.00 1984-02-08 2020-09-09 TRUE TRUE
ECBASSETS_YoY Calc Central Bank Assets for Euro Area (11-19 Countries) Year over Year Percent -1.00 1998-12-01 2020-01-01 TRUE TRUE
ECBASSETS_YoY4 Calc Central Bank Assets for Euro Area (11-19 Countries) 4 Year over 4 Year Percent -1.00 1998-12-01 2020-01-01 FALSE FALSE
ECBASSETS_YoY5 Calc Central Bank Assets for Euro Area (11-19 Countries) 5 Year over 5 Year Percent -1.00 1998-12-01 2020-01-01 FALSE FALSE
ECBASSETS_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Central Bank Assets for Euro Area (11-19 Countries) /period -1.00 1998-12-01 2020-01-01 TRUE FALSE
ECBASSETS_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Central Bank Assets for Euro Area (11-19 Countries) /period -1.00 1998-12-01 2020-01-01 FALSE FALSE
ECBASSETS_SmoothDer Calc Derivative of Smoothed Central Bank Assets for Euro Area (11-19 Countries) /period -1.00 1998-12-01 2020-01-01 FALSE FALSE
ECBASSETS_Log Calc Log of Central Bank Assets for Euro Area (11-19 Countries) log() -1.00 1998-12-01 2020-01-01 TRUE TRUE
ECBASSETS_mva200 Calc Central Bank Assets for Euro Area (11-19 Countries) 200 Day MA 200 Day MA -1.00 1998-12-01 2020-01-01 TRUE TRUE
ECBASSETS_mva050 Calc Central Bank Assets for Euro Area (11-19 Countries) 50 Day MA 50 Day MA -1.00 1998-12-01 2020-01-01 TRUE TRUE
EUNNGDP_YoY Calc Gross Domestic Product (Euro/ECU series) for Euro Area (19 Countries) Year over Year Percent -1.00 1995-01-01 2021-01-01 FALSE FALSE
EUNNGDP_YoY4 Calc Gross Domestic Product (Euro/ECU series) for Euro Area (19 Countries) 4 Year over 4 Year Percent -1.00 1995-01-01 2021-01-01 FALSE FALSE
EUNNGDP_YoY5 Calc Gross Domestic Product (Euro/ECU series) for Euro Area (19 Countries) 5 Year over 5 Year Percent -1.00 1995-01-01 2021-01-01 FALSE FALSE
EUNNGDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Gross Domestic Product (Euro/ECU series) for Euro Area (19 Countries) /period -1.00 1995-01-01 2021-01-01 TRUE TRUE
EUNNGDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Gross Domestic Product (Euro/ECU series) for Euro Area (19 Countries) /period -1.00 1995-01-01 2021-01-01 FALSE FALSE
EUNNGDP_SmoothDer Calc Derivative of Smoothed Gross Domestic Product (Euro/ECU series) for Euro Area (19 Countries) /period -1.00 1995-01-01 2021-01-01 FALSE FALSE
EUNNGDP_Log Calc Log of Gross Domestic Product (Euro/ECU series) for Euro Area (19 Countries) log() -1.00 1995-01-01 2021-01-01 TRUE TRUE
EUNNGDP_mva200 Calc Gross Domestic Product (Euro/ECU series) for Euro Area (19 Countries) 200 Day MA 200 Day MA -1.00 1995-01-01 2021-01-01 TRUE TRUE
EUNNGDP_mva050 Calc Gross Domestic Product (Euro/ECU series) for Euro Area (19 Countries) 50 Day MA 50 Day MA -1.00 1995-01-01 2021-01-01 TRUE TRUE
CEU0600000007_YoY Calc Average Weekly Hours of Production and Nonsupervisory Employees: Goods-Producing Year over Year Percent -1.00 1947-01-01 2021-05-01 FALSE FALSE
CEU0600000007_YoY4 Calc Average Weekly Hours of Production and Nonsupervisory Employees: Goods-Producing 4 Year over 4 Year Percent -1.00 1947-01-01 2021-05-01 TRUE FALSE
CEU0600000007_YoY5 Calc Average Weekly Hours of Production and Nonsupervisory Employees: Goods-Producing 5 Year over 5 Year Percent -1.00 1947-01-01 2021-05-01 FALSE FALSE
CEU0600000007_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Average Weekly Hours of Production and Nonsupervisory Employees: Goods-Producing /period -1.00 1947-01-01 2021-05-01 TRUE TRUE
CEU0600000007_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Average Weekly Hours of Production and Nonsupervisory Employees: Goods-Producing /period -1.00 1947-01-01 2021-05-01 FALSE FALSE
CEU0600000007_SmoothDer Calc Derivative of Smoothed Average Weekly Hours of Production and Nonsupervisory Employees: Goods-Producing /period -1.00 1947-01-01 2021-05-01 FALSE FALSE
CEU0600000007_Log Calc Log of Average Weekly Hours of Production and Nonsupervisory Employees: Goods-Producing log() -1.00 1947-01-01 2021-05-01 TRUE TRUE
CEU0600000007_mva200 Calc Average Weekly Hours of Production and Nonsupervisory Employees: Goods-Producing 200 Day MA 200 Day MA -1.00 1947-01-01 2021-05-01 FALSE FALSE
CEU0600000007_mva050 Calc Average Weekly Hours of Production and Nonsupervisory Employees: Goods-Producing 50 Day MA 50 Day MA -1.00 1947-01-01 2021-05-01 TRUE TRUE
USD1MTD156N_YoY Calc 1-Month London Interbank Offered Rate (LIBOR), based on U.S. Dollar Year over Year Percent -1.00 1986-01-02 2021-06-04 FALSE FALSE
USD1MTD156N_YoY4 Calc 1-Month London Interbank Offered Rate (LIBOR), based on U.S. Dollar 4 Year over 4 Year Percent -1.00 1986-01-02 2021-06-04 FALSE FALSE
USD1MTD156N_YoY5 Calc 1-Month London Interbank Offered Rate (LIBOR), based on U.S. Dollar 5 Year over 5 Year Percent -1.00 1986-01-02 2021-06-04 FALSE FALSE
USD1MTD156N_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) 1-Month London Interbank Offered Rate (LIBOR), based on U.S. Dollar /period -1.00 1986-01-02 2021-06-04 FALSE FALSE
USD1MTD156N_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) 1-Month London Interbank Offered Rate (LIBOR), based on U.S. Dollar /period -1.00 1986-01-02 2021-06-04 FALSE FALSE
USD1MTD156N_SmoothDer Calc Derivative of Smoothed 1-Month London Interbank Offered Rate (LIBOR), based on U.S. Dollar /period -1.00 1986-01-02 2021-06-04 FALSE FALSE
USD1MTD156N_Log Calc Log of 1-Month London Interbank Offered Rate (LIBOR), based on U.S. Dollar log() -1.00 1986-01-02 2021-06-04 FALSE FALSE
USD1MTD156N_mva200 Calc 1-Month London Interbank Offered Rate (LIBOR), based on U.S. Dollar 200 Day MA 200 Day MA -1.00 1986-01-02 2021-06-04 FALSE FALSE
USD1MTD156N_mva050 Calc 1-Month London Interbank Offered Rate (LIBOR), based on U.S. Dollar 50 Day MA 50 Day MA -1.00 1986-01-02 2021-06-04 FALSE FALSE
CURRENCY_YoY Calc Currency Component of M1 (Seasonally Adjusted) Year over Year Percent -1.00 1975-01-06 2021-02-01 FALSE FALSE
CURRENCY_YoY4 Calc Currency Component of M1 (Seasonally Adjusted) 4 Year over 4 Year Percent -1.00 1975-01-06 2021-02-01 FALSE FALSE
CURRENCY_YoY5 Calc Currency Component of M1 (Seasonally Adjusted) 5 Year over 5 Year Percent -1.00 1975-01-06 2021-02-01 FALSE FALSE
CURRENCY_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Currency Component of M1 (Seasonally Adjusted) /period -1.00 1975-01-06 2021-02-01 FALSE FALSE
CURRENCY_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Currency Component of M1 (Seasonally Adjusted) /period -1.00 1975-01-06 2021-02-01 FALSE FALSE
CURRENCY_SmoothDer Calc Derivative of Smoothed Currency Component of M1 (Seasonally Adjusted) /period -1.00 1975-01-06 2021-02-01 FALSE FALSE
CURRENCY_Log Calc Log of Currency Component of M1 (Seasonally Adjusted) log() -1.00 1975-01-06 2021-02-01 TRUE TRUE
CURRENCY_mva200 Calc Currency Component of M1 (Seasonally Adjusted) 200 Day MA 200 Day MA -1.00 1975-01-06 2021-02-01 TRUE TRUE
CURRENCY_mva050 Calc Currency Component of M1 (Seasonally Adjusted) 50 Day MA 50 Day MA -1.00 1975-01-06 2021-02-01 TRUE TRUE
WCURRNS_YoY Calc Currency Component of M1 Year over Year Percent -1.00 1975-01-06 2021-05-03 FALSE FALSE
WCURRNS_YoY4 Calc Currency Component of M1 4 Year over 4 Year Percent -1.00 1975-01-06 2021-05-03 FALSE FALSE
WCURRNS_YoY5 Calc Currency Component of M1 5 Year over 5 Year Percent -1.00 1975-01-06 2021-05-03 FALSE FALSE
WCURRNS_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Currency Component of M1 /period -1.00 1975-01-06 2021-05-03 TRUE TRUE
WCURRNS_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Currency Component of M1 /period -1.00 1975-01-06 2021-05-03 FALSE FALSE
WCURRNS_SmoothDer Calc Derivative of Smoothed Currency Component of M1 /period -1.00 1975-01-06 2021-05-03 TRUE TRUE
WCURRNS_Log Calc Log of Currency Component of M1 log() -1.00 1975-01-06 2021-05-03 TRUE TRUE
WCURRNS_mva200 Calc Currency Component of M1 200 Day MA 200 Day MA -1.00 1975-01-06 2021-05-03 TRUE TRUE
WCURRNS_mva050 Calc Currency Component of M1 50 Day MA 50 Day MA -1.00 1975-01-06 2021-05-03 TRUE TRUE
BOGMBASE_YoY Calc Monetary Base; Total Year over Year Percent -1.00 1959-01-01 2021-04-01 TRUE FALSE
BOGMBASE_YoY4 Calc Monetary Base; Total 4 Year over 4 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
BOGMBASE_YoY5 Calc Monetary Base; Total 5 Year over 5 Year Percent -1.00 1959-01-01 2021-04-01 TRUE TRUE
BOGMBASE_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Monetary Base; Total /period -1.00 1959-01-01 2021-04-01 TRUE TRUE
BOGMBASE_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Monetary Base; Total /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
BOGMBASE_SmoothDer Calc Derivative of Smoothed Monetary Base; Total /period -1.00 1959-01-01 2021-04-01 TRUE TRUE
BOGMBASE_Log Calc Log of Monetary Base; Total log() -1.00 1959-01-01 2021-04-01 TRUE TRUE
BOGMBASE_mva200 Calc Monetary Base; Total 200 Day MA 200 Day MA -1.00 1959-01-01 2021-04-01 TRUE TRUE
BOGMBASE_mva050 Calc Monetary Base; Total 50 Day MA 50 Day MA -1.00 1959-01-01 2021-04-01 TRUE TRUE
PRS88003193_YoY Calc Nonfinancial Corporations Sector: Unit Profits Year over Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
PRS88003193_YoY4 Calc Nonfinancial Corporations Sector: Unit Profits 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
PRS88003193_YoY5 Calc Nonfinancial Corporations Sector: Unit Profits 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
PRS88003193_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Nonfinancial Corporations Sector: Unit Profits /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
PRS88003193_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Nonfinancial Corporations Sector: Unit Profits /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
PRS88003193_SmoothDer Calc Derivative of Smoothed Nonfinancial Corporations Sector: Unit Profits /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
PRS88003193_Log Calc Log of Nonfinancial Corporations Sector: Unit Profits log() -1.00 1947-01-01 2021-01-01 TRUE FALSE
PRS88003193_mva200 Calc Nonfinancial Corporations Sector: Unit Profits 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
PRS88003193_mva050 Calc Nonfinancial Corporations Sector: Unit Profits 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE FALSE
PPIACO_YoY Calc Producer Price Index for All Commodities Year over Year Percent -1.00 1913-01-01 2021-04-01 FALSE FALSE
PPIACO_YoY4 Calc Producer Price Index for All Commodities 4 Year over 4 Year Percent -1.00 1913-01-01 2021-04-01 FALSE FALSE
PPIACO_YoY5 Calc Producer Price Index for All Commodities 5 Year over 5 Year Percent -1.00 1913-01-01 2021-04-01 FALSE FALSE
PPIACO_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Producer Price Index for All Commodities /period -1.00 1913-01-01 2021-04-01 FALSE FALSE
PPIACO_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Producer Price Index for All Commodities /period -1.00 1913-01-01 2021-04-01 FALSE FALSE
PPIACO_SmoothDer Calc Derivative of Smoothed Producer Price Index for All Commodities /period -1.00 1913-01-01 2021-04-01 FALSE FALSE
PPIACO_Log Calc Log of Producer Price Index for All Commodities log() -1.00 1913-01-01 2021-04-01 TRUE TRUE
PPIACO_mva200 Calc Producer Price Index for All Commodities 200 Day MA 200 Day MA -1.00 1913-01-01 2021-04-01 TRUE TRUE
PPIACO_mva050 Calc Producer Price Index for All Commodities 50 Day MA 50 Day MA -1.00 1913-01-01 2021-04-01 TRUE TRUE
PCUOMFGOMFG_YoY Calc Producer Price Index by Industry: Total Manufacturing Industries Year over Year Percent -1.00 1984-12-01 2021-04-01 FALSE FALSE
PCUOMFGOMFG_YoY4 Calc Producer Price Index by Industry: Total Manufacturing Industries 4 Year over 4 Year Percent -1.00 1984-12-01 2021-04-01 FALSE FALSE
PCUOMFGOMFG_YoY5 Calc Producer Price Index by Industry: Total Manufacturing Industries 5 Year over 5 Year Percent -1.00 1984-12-01 2021-04-01 FALSE FALSE
PCUOMFGOMFG_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Producer Price Index by Industry: Total Manufacturing Industries /period -1.00 1984-12-01 2021-04-01 FALSE FALSE
PCUOMFGOMFG_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Producer Price Index by Industry: Total Manufacturing Industries /period -1.00 1984-12-01 2021-04-01 FALSE FALSE
PCUOMFGOMFG_SmoothDer Calc Derivative of Smoothed Producer Price Index by Industry: Total Manufacturing Industries /period -1.00 1984-12-01 2021-04-01 FALSE FALSE
PCUOMFGOMFG_Log Calc Log of Producer Price Index by Industry: Total Manufacturing Industries log() -1.00 1984-12-01 2021-04-01 TRUE TRUE
PCUOMFGOMFG_mva200 Calc Producer Price Index by Industry: Total Manufacturing Industries 200 Day MA 200 Day MA -1.00 1984-12-01 2021-04-01 TRUE TRUE
PCUOMFGOMFG_mva050 Calc Producer Price Index by Industry: Total Manufacturing Industries 50 Day MA 50 Day MA -1.00 1984-12-01 2021-04-01 TRUE TRUE
POPTHM_YoY Calc Population (U.S.) Year over Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
POPTHM_YoY Calc Population (U.S.) Year over Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
POPTHM_YoY4 Calc Population (U.S.) 4 Year over 4 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
POPTHM_YoY4 Calc Population (U.S.) 4 Year over 4 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
POPTHM_YoY5 Calc Population (U.S.) 5 Year over 5 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
POPTHM_YoY5 Calc Population (U.S.) 5 Year over 5 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
POPTHM_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Population (U.S.) /period -1.00 1959-01-01 2021-04-01 TRUE TRUE
POPTHM_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Population (U.S.) /period -1.00 1959-01-01 2021-04-01 TRUE TRUE
POPTHM_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Population (U.S.) /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
POPTHM_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Population (U.S.) /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
POPTHM_SmoothDer Calc Derivative of Smoothed Population (U.S.) /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
POPTHM_SmoothDer Calc Derivative of Smoothed Population (U.S.) /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
POPTHM_Log Calc Log of Population (U.S.) log() -1.00 1959-01-01 2021-04-01 TRUE TRUE
POPTHM_Log Calc Log of Population (U.S.) log() -1.00 1959-01-01 2021-04-01 TRUE TRUE
POPTHM_mva200 Calc Population (U.S.) 200 Day MA 200 Day MA -1.00 1959-01-01 2021-04-01 TRUE TRUE
POPTHM_mva200 Calc Population (U.S.) 200 Day MA 200 Day MA -1.00 1959-01-01 2021-04-01 TRUE TRUE
POPTHM_mva050 Calc Population (U.S.) 50 Day MA 50 Day MA -1.00 1959-01-01 2021-04-01 TRUE TRUE
POPTHM_mva050 Calc Population (U.S.) 50 Day MA 50 Day MA -1.00 1959-01-01 2021-04-01 TRUE TRUE
POPTHM.1_YoY Calc Year over Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
POPTHM.1_YoY Calc Year over Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
POPTHM.1_YoY4 Calc 4 Year over 4 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
POPTHM.1_YoY4 Calc 4 Year over 4 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
POPTHM.1_YoY5 Calc 5 Year over 5 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
POPTHM.1_YoY5 Calc 5 Year over 5 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
POPTHM.1_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1959-01-01 2021-04-01 TRUE TRUE
POPTHM.1_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1959-01-01 2021-04-01 TRUE TRUE
POPTHM.1_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
POPTHM.1_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
POPTHM.1_SmoothDer Calc Derivative of Smoothed /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
POPTHM.1_SmoothDer Calc Derivative of Smoothed /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
POPTHM.1_Log Calc Log of log() -1.00 1959-01-01 2021-04-01 TRUE TRUE
POPTHM.1_Log Calc Log of log() -1.00 1959-01-01 2021-04-01 TRUE TRUE
POPTHM.1_mva200 Calc 200 Day MA 200 Day MA -1.00 1959-01-01 2021-04-01 TRUE TRUE
POPTHM.1_mva200 Calc 200 Day MA 200 Day MA -1.00 1959-01-01 2021-04-01 TRUE TRUE
POPTHM.1_mva050 Calc 50 Day MA 50 Day MA -1.00 1959-01-01 2021-04-01 TRUE TRUE
POPTHM.1_mva050 Calc 50 Day MA 50 Day MA -1.00 1959-01-01 2021-04-01 TRUE TRUE
CLF16OV_YoY Calc Civilian Labor Force Level, SA Year over Year Percent -1.00 1948-01-01 2021-05-01 FALSE FALSE
CLF16OV_YoY4 Calc Civilian Labor Force Level, SA 4 Year over 4 Year Percent -1.00 1948-01-01 2021-05-01 FALSE FALSE
CLF16OV_YoY5 Calc Civilian Labor Force Level, SA 5 Year over 5 Year Percent -1.00 1948-01-01 2021-05-01 FALSE FALSE
CLF16OV_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Civilian Labor Force Level, SA /period -1.00 1948-01-01 2021-05-01 TRUE TRUE
CLF16OV_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Civilian Labor Force Level, SA /period -1.00 1948-01-01 2021-05-01 FALSE FALSE
CLF16OV_SmoothDer Calc Derivative of Smoothed Civilian Labor Force Level, SA /period -1.00 1948-01-01 2021-05-01 FALSE FALSE
CLF16OV_Log Calc Log of Civilian Labor Force Level, SA log() -1.00 1948-01-01 2021-05-01 TRUE FALSE
CLF16OV_mva200 Calc Civilian Labor Force Level, SA 200 Day MA 200 Day MA -1.00 1948-01-01 2021-05-01 TRUE TRUE
CLF16OV_mva050 Calc Civilian Labor Force Level, SA 50 Day MA 50 Day MA -1.00 1948-01-01 2021-05-01 FALSE FALSE
LNU01000000_YoY Calc Civilian Labor Force Level, NSA Year over Year Percent -1.00 1948-01-01 2021-05-01 FALSE FALSE
LNU01000000_YoY4 Calc Civilian Labor Force Level, NSA 4 Year over 4 Year Percent -1.00 1948-01-01 2021-05-01 FALSE FALSE
LNU01000000_YoY5 Calc Civilian Labor Force Level, NSA 5 Year over 5 Year Percent -1.00 1948-01-01 2021-05-01 FALSE FALSE
LNU01000000_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Civilian Labor Force Level, NSA /period -1.00 1948-01-01 2021-05-01 TRUE TRUE
LNU01000000_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Civilian Labor Force Level, NSA /period -1.00 1948-01-01 2021-05-01 FALSE FALSE
LNU01000000_SmoothDer Calc Derivative of Smoothed Civilian Labor Force Level, NSA /period -1.00 1948-01-01 2021-05-01 FALSE FALSE
LNU01000000_Log Calc Log of Civilian Labor Force Level, NSA log() -1.00 1948-01-01 2021-05-01 TRUE TRUE
LNU01000000_mva200 Calc Civilian Labor Force Level, NSA 200 Day MA 200 Day MA -1.00 1948-01-01 2021-05-01 TRUE FALSE
LNU01000000_mva050 Calc Civilian Labor Force Level, NSA 50 Day MA 50 Day MA -1.00 1948-01-01 2021-05-01 TRUE TRUE
LNU03000000_YoY Calc Unemployment Level (NSA) Year over Year Percent -1.00 1948-01-01 2021-05-01 TRUE FALSE
LNU03000000_YoY4 Calc Unemployment Level (NSA) 4 Year over 4 Year Percent -1.00 1948-01-01 2021-05-01 FALSE FALSE
LNU03000000_YoY5 Calc Unemployment Level (NSA) 5 Year over 5 Year Percent -1.00 1948-01-01 2021-05-01 FALSE FALSE
LNU03000000_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Unemployment Level (NSA) /period -1.00 1948-01-01 2021-05-01 FALSE FALSE
LNU03000000_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Unemployment Level (NSA) /period -1.00 1948-01-01 2021-05-01 FALSE FALSE
LNU03000000_SmoothDer Calc Derivative of Smoothed Unemployment Level (NSA) /period -1.00 1948-01-01 2021-05-01 TRUE TRUE
LNU03000000_Log Calc Log of Unemployment Level (NSA) log() -1.00 1948-01-01 2021-05-01 TRUE FALSE
LNU03000000_mva200 Calc Unemployment Level (NSA) 200 Day MA 200 Day MA -1.00 1948-01-01 2021-05-01 FALSE FALSE
LNU03000000_mva050 Calc Unemployment Level (NSA) 50 Day MA 50 Day MA -1.00 1948-01-01 2021-05-01 FALSE FALSE
UNEMPLOY_YoY Calc Unemployment Level, seasonally adjusted Year over Year Percent -1.00 1948-01-01 2021-05-01 TRUE FALSE
UNEMPLOY_YoY4 Calc Unemployment Level, seasonally adjusted 4 Year over 4 Year Percent -1.00 1948-01-01 2021-05-01 TRUE FALSE
UNEMPLOY_YoY5 Calc Unemployment Level, seasonally adjusted 5 Year over 5 Year Percent -1.00 1948-01-01 2021-05-01 TRUE FALSE
UNEMPLOY_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Unemployment Level, seasonally adjusted /period -1.00 1948-01-01 2021-05-01 FALSE FALSE
UNEMPLOY_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Unemployment Level, seasonally adjusted /period -1.00 1948-01-01 2021-05-01 FALSE FALSE
UNEMPLOY_SmoothDer Calc Derivative of Smoothed Unemployment Level, seasonally adjusted /period -1.00 1948-01-01 2021-05-01 TRUE TRUE
UNEMPLOY_Log Calc Log of Unemployment Level, seasonally adjusted log() -1.00 1948-01-01 2021-05-01 TRUE FALSE
UNEMPLOY_mva200 Calc Unemployment Level, seasonally adjusted 200 Day MA 200 Day MA -1.00 1948-01-01 2021-05-01 FALSE FALSE
UNEMPLOY_mva050 Calc Unemployment Level, seasonally adjusted 50 Day MA 50 Day MA -1.00 1948-01-01 2021-05-01 FALSE FALSE
RSAFS_YoY Calc Advance Retail Sales: Retail and Food Services Year over Year Percent -1.00 1992-01-01 2021-04-01 FALSE FALSE
RSAFS_YoY4 Calc Advance Retail Sales: Retail and Food Services 4 Year over 4 Year Percent -1.00 1992-01-01 2021-04-01 FALSE FALSE
RSAFS_YoY5 Calc Advance Retail Sales: Retail and Food Services 5 Year over 5 Year Percent -1.00 1992-01-01 2021-04-01 FALSE FALSE
RSAFS_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Advance Retail Sales: Retail and Food Services /period -1.00 1992-01-01 2021-04-01 TRUE TRUE
RSAFS_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Advance Retail Sales: Retail and Food Services /period -1.00 1992-01-01 2021-04-01 FALSE FALSE
RSAFS_SmoothDer Calc Derivative of Smoothed Advance Retail Sales: Retail and Food Services /period -1.00 1992-01-01 2021-04-01 FALSE FALSE
RSAFS_Log Calc Log of Advance Retail Sales: Retail and Food Services log() -1.00 1992-01-01 2021-04-01 TRUE TRUE
RSAFS_mva200 Calc Advance Retail Sales: Retail and Food Services 200 Day MA 200 Day MA -1.00 1992-01-01 2021-04-01 TRUE TRUE
RSAFS_mva050 Calc Advance Retail Sales: Retail and Food Services 50 Day MA 50 Day MA -1.00 1992-01-01 2021-04-01 TRUE TRUE
FRGSHPUSM649NCIS_YoY Calc Cass Freight Index: Shipments Year over Year Percent -1.00 1990-01-01 2021-05-01 FALSE FALSE
FRGSHPUSM649NCIS_YoY4 Calc Cass Freight Index: Shipments 4 Year over 4 Year Percent -1.00 1990-01-01 2021-05-01 TRUE TRUE
FRGSHPUSM649NCIS_YoY5 Calc Cass Freight Index: Shipments 5 Year over 5 Year Percent -1.00 1990-01-01 2021-05-01 FALSE FALSE
FRGSHPUSM649NCIS_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Cass Freight Index: Shipments /period -1.00 1990-01-01 2021-05-01 TRUE TRUE
FRGSHPUSM649NCIS_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Cass Freight Index: Shipments /period -1.00 1990-01-01 2021-05-01 FALSE FALSE
FRGSHPUSM649NCIS_SmoothDer Calc Derivative of Smoothed Cass Freight Index: Shipments /period -1.00 1990-01-01 2021-05-01 FALSE FALSE
FRGSHPUSM649NCIS_Log Calc Log of Cass Freight Index: Shipments log() -1.00 1990-01-01 2021-05-01 TRUE TRUE
FRGSHPUSM649NCIS_mva200 Calc Cass Freight Index: Shipments 200 Day MA 200 Day MA -1.00 1990-01-01 2021-05-01 TRUE TRUE
FRGSHPUSM649NCIS_mva050 Calc Cass Freight Index: Shipments 50 Day MA 50 Day MA -1.00 1990-01-01 2021-05-01 TRUE TRUE
BOPGTB_YoY Calc Trade Balance: Goods, Balance of Payments Basis (SA) Year over Year Percent -1.00 1992-01-01 2021-04-01 FALSE FALSE
BOPGTB_YoY4 Calc Trade Balance: Goods, Balance of Payments Basis (SA) 4 Year over 4 Year Percent -1.00 1992-01-01 2021-04-01 TRUE FALSE
BOPGTB_YoY5 Calc Trade Balance: Goods, Balance of Payments Basis (SA) 5 Year over 5 Year Percent -1.00 1992-01-01 2021-04-01 FALSE FALSE
BOPGTB_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Trade Balance: Goods, Balance of Payments Basis (SA) /period -1.00 1992-01-01 2021-04-01 TRUE TRUE
BOPGTB_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Trade Balance: Goods, Balance of Payments Basis (SA) /period -1.00 1992-01-01 2021-04-01 TRUE FALSE
BOPGTB_SmoothDer Calc Derivative of Smoothed Trade Balance: Goods, Balance of Payments Basis (SA) /period -1.00 1992-01-01 2021-04-01 TRUE TRUE
BOPGTB_Log Calc Log of Trade Balance: Goods, Balance of Payments Basis (SA) log() -1.00 1992-01-01 2021-04-01 TRUE TRUE
BOPGTB_mva200 Calc Trade Balance: Goods, Balance of Payments Basis (SA) 200 Day MA 200 Day MA -1.00 1992-01-01 2021-04-01 FALSE FALSE
BOPGTB_mva050 Calc Trade Balance: Goods, Balance of Payments Basis (SA) 50 Day MA 50 Day MA -1.00 1992-01-01 2021-04-01 TRUE FALSE
TERMCBPER24NS_YoY Calc Finance Rate on Personal Loans at Commercial Banks, 24 Month Loan Year over Year Percent -1.00 1972-02-01 2021-02-01 TRUE TRUE
TERMCBPER24NS_YoY4 Calc Finance Rate on Personal Loans at Commercial Banks, 24 Month Loan 4 Year over 4 Year Percent -1.00 1972-02-01 2021-02-01 TRUE FALSE
TERMCBPER24NS_YoY5 Calc Finance Rate on Personal Loans at Commercial Banks, 24 Month Loan 5 Year over 5 Year Percent -1.00 1972-02-01 2021-02-01 TRUE TRUE
TERMCBPER24NS_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Finance Rate on Personal Loans at Commercial Banks, 24 Month Loan /period -1.00 1972-02-01 2021-02-01 FALSE FALSE
TERMCBPER24NS_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Finance Rate on Personal Loans at Commercial Banks, 24 Month Loan /period -1.00 1972-02-01 2021-02-01 FALSE FALSE
TERMCBPER24NS_SmoothDer Calc Derivative of Smoothed Finance Rate on Personal Loans at Commercial Banks, 24 Month Loan /period -1.00 1972-02-01 2021-02-01 FALSE FALSE
TERMCBPER24NS_Log Calc Log of Finance Rate on Personal Loans at Commercial Banks, 24 Month Loan log() -1.00 1972-02-01 2021-02-01 TRUE FALSE
TERMCBPER24NS_mva200 Calc Finance Rate on Personal Loans at Commercial Banks, 24 Month Loan 200 Day MA 200 Day MA -1.00 1972-02-01 2021-02-01 FALSE FALSE
TERMCBPER24NS_mva050 Calc Finance Rate on Personal Loans at Commercial Banks, 24 Month Loan 50 Day MA 50 Day MA -1.00 1972-02-01 2021-02-01 TRUE FALSE
A065RC1A027NBEA_YoY Calc Personal income (NSA) Year over Year Percent -1.00 1929-01-01 2020-01-01 TRUE FALSE
A065RC1A027NBEA_YoY4 Calc Personal income (NSA) 4 Year over 4 Year Percent -1.00 1929-01-01 2020-01-01 FALSE FALSE
A065RC1A027NBEA_YoY5 Calc Personal income (NSA) 5 Year over 5 Year Percent -1.00 1929-01-01 2020-01-01 FALSE FALSE
A065RC1A027NBEA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Personal income (NSA) /period -1.00 1929-01-01 2020-01-01 FALSE FALSE
A065RC1A027NBEA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Personal income (NSA) /period -1.00 1929-01-01 2020-01-01 FALSE FALSE
A065RC1A027NBEA_SmoothDer Calc Derivative of Smoothed Personal income (NSA) /period -1.00 1929-01-01 2020-01-01 FALSE FALSE
A065RC1A027NBEA_Log Calc Log of Personal income (NSA) log() -1.00 1929-01-01 2020-01-01 TRUE TRUE
A065RC1A027NBEA_mva200 Calc Personal income (NSA) 200 Day MA 200 Day MA -1.00 1929-01-01 2020-01-01 TRUE TRUE
A065RC1A027NBEA_mva050 Calc Personal income (NSA) 50 Day MA 50 Day MA -1.00 1929-01-01 2020-01-01 TRUE TRUE
PI_YoY Calc Personal income (SA) Year over Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
PI_YoY4 Calc Personal income (SA) 4 Year over 4 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
PI_YoY5 Calc Personal income (SA) 5 Year over 5 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
PI_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Personal income (SA) /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
PI_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Personal income (SA) /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
PI_SmoothDer Calc Derivative of Smoothed Personal income (SA) /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
PI_Log Calc Log of Personal income (SA) log() -1.00 1959-01-01 2021-04-01 TRUE FALSE
PI_mva200 Calc Personal income (SA) 200 Day MA 200 Day MA -1.00 1959-01-01 2021-04-01 TRUE TRUE
PI_mva050 Calc Personal income (SA) 50 Day MA 50 Day MA -1.00 1959-01-01 2021-04-01 FALSE FALSE
PCE_YoY Calc Personal Consumption Expenditures (SA) Year over Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
PCE_YoY4 Calc Personal Consumption Expenditures (SA) 4 Year over 4 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
PCE_YoY5 Calc Personal Consumption Expenditures (SA) 5 Year over 5 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
PCE_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Personal Consumption Expenditures (SA) /period -1.00 1959-01-01 2021-04-01 TRUE TRUE
PCE_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Personal Consumption Expenditures (SA) /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
PCE_SmoothDer Calc Derivative of Smoothed Personal Consumption Expenditures (SA) /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
PCE_Log Calc Log of Personal Consumption Expenditures (SA) log() -1.00 1959-01-01 2021-04-01 TRUE TRUE
PCE_mva200 Calc Personal Consumption Expenditures (SA) 200 Day MA 200 Day MA -1.00 1959-01-01 2021-04-01 TRUE TRUE
PCE_mva050 Calc Personal Consumption Expenditures (SA) 50 Day MA 50 Day MA -1.00 1959-01-01 2021-04-01 TRUE TRUE
A053RC1Q027SBEA_YoY Calc National income: Corporate profits before tax (without IVA and CCAdj) Year over Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
A053RC1Q027SBEA_YoY4 Calc National income: Corporate profits before tax (without IVA and CCAdj) 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
A053RC1Q027SBEA_YoY5 Calc National income: Corporate profits before tax (without IVA and CCAdj) 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
A053RC1Q027SBEA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) National income: Corporate profits before tax (without IVA and CCAdj) /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
A053RC1Q027SBEA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) National income: Corporate profits before tax (without IVA and CCAdj) /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
A053RC1Q027SBEA_SmoothDer Calc Derivative of Smoothed National income: Corporate profits before tax (without IVA and CCAdj) /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
A053RC1Q027SBEA_Log Calc Log of National income: Corporate profits before tax (without IVA and CCAdj) log() -1.00 1947-01-01 2021-01-01 TRUE TRUE
A053RC1Q027SBEA_mva200 Calc National income: Corporate profits before tax (without IVA and CCAdj) 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
A053RC1Q027SBEA_mva050 Calc National income: Corporate profits before tax (without IVA and CCAdj) 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
CPROFIT_YoY Calc Corporate Profits with Inventory Valuation Adjustment (IVA) and Capital Consumption Adjustment (CCAdj) Year over Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
CPROFIT_YoY4 Calc Corporate Profits with Inventory Valuation Adjustment (IVA) and Capital Consumption Adjustment (CCAdj) 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
CPROFIT_YoY5 Calc Corporate Profits with Inventory Valuation Adjustment (IVA) and Capital Consumption Adjustment (CCAdj) 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
CPROFIT_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Corporate Profits with Inventory Valuation Adjustment (IVA) and Capital Consumption Adjustment (CCAdj) /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
CPROFIT_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Corporate Profits with Inventory Valuation Adjustment (IVA) and Capital Consumption Adjustment (CCAdj) /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
CPROFIT_SmoothDer Calc Derivative of Smoothed Corporate Profits with Inventory Valuation Adjustment (IVA) and Capital Consumption Adjustment (CCAdj) /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
CPROFIT_Log Calc Log of Corporate Profits with Inventory Valuation Adjustment (IVA) and Capital Consumption Adjustment (CCAdj) log() -1.00 1947-01-01 2021-01-01 TRUE FALSE
CPROFIT_mva200 Calc Corporate Profits with Inventory Valuation Adjustment (IVA) and Capital Consumption Adjustment (CCAdj) 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
CPROFIT_mva050 Calc Corporate Profits with Inventory Valuation Adjustment (IVA) and Capital Consumption Adjustment (CCAdj) 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE FALSE
SPY.Open_YoY Calc Year over Year Percent -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1993-01-29 2021-06-11 TRUE TRUE
SPY.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Open_Log Calc Log of log() -1.00 1993-01-29 2021-06-11 TRUE TRUE
SPY.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1993-01-29 2021-06-11 TRUE TRUE
SPY.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1993-01-29 2021-06-11 TRUE TRUE
SPY.High_YoY Calc Year over Year Percent -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1993-01-29 2021-06-11 TRUE TRUE
SPY.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.High_Log Calc Log of log() -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1993-01-29 2021-06-11 TRUE TRUE
SPY.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1993-01-29 2021-06-11 TRUE TRUE
SPY.Low_YoY Calc Year over Year Percent -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1993-01-29 2021-06-11 TRUE TRUE
SPY.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Low_Log Calc Log of log() -1.00 1993-01-29 2021-06-11 TRUE TRUE
SPY.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1993-01-29 2021-06-11 TRUE TRUE
SPY.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1993-01-29 2021-06-11 TRUE TRUE
SPY.Close_YoY Calc Year over Year Percent -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1993-01-29 2021-06-11 TRUE FALSE
SPY.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1993-01-29 2021-06-11 TRUE TRUE
SPY.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1993-01-29 2021-06-11 TRUE TRUE
SPY.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Close_Log Calc Log of log() -1.00 1993-01-29 2021-06-11 TRUE TRUE
SPY.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1993-01-29 2021-06-11 TRUE TRUE
SPY.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1993-01-29 2021-06-11 TRUE TRUE
SPY.Volume_YoY Calc Year over Year Percent -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Volume_Log Calc Log of log() -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Adjusted_YoY Calc Year over Year Percent -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1993-01-29 2021-06-11 TRUE FALSE
SPY.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1993-01-29 2021-06-11 TRUE TRUE
SPY.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1993-01-29 2021-06-11 TRUE TRUE
SPY.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1993-01-29 2021-06-11 FALSE FALSE
SPY.Adjusted_Log Calc Log of log() -1.00 1993-01-29 2021-06-11 TRUE TRUE
SPY.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1993-01-29 2021-06-11 TRUE TRUE
SPY.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1993-01-29 2021-06-11 TRUE TRUE
MDY.Open_YoY Calc Year over Year Percent -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Open_Log Calc Log of log() -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1995-05-04 2021-06-11 TRUE TRUE
MDY.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1995-05-04 2021-06-11 TRUE TRUE
MDY.High_YoY Calc Year over Year Percent -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.High_Log Calc Log of log() -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1995-05-04 2021-06-11 TRUE TRUE
MDY.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Low_YoY Calc Year over Year Percent -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Low_Log Calc Log of log() -1.00 1995-05-04 2021-06-11 TRUE FALSE
MDY.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1995-05-04 2021-06-11 TRUE TRUE
MDY.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1995-05-04 2021-06-11 TRUE TRUE
MDY.Close_YoY Calc Year over Year Percent -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1995-05-04 2021-06-11 TRUE FALSE
MDY.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Close_Log Calc Log of log() -1.00 1995-05-04 2021-06-11 TRUE FALSE
MDY.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1995-05-04 2021-06-11 TRUE TRUE
MDY.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1995-05-04 2021-06-11 TRUE TRUE
MDY.Volume_YoY Calc Year over Year Percent -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1995-05-04 2021-06-11 TRUE TRUE
MDY.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1995-05-04 2021-06-11 TRUE TRUE
MDY.Volume_Log Calc Log of log() -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1995-05-04 2021-06-11 TRUE FALSE
MDY.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Adjusted_YoY Calc Year over Year Percent -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1995-05-04 2021-06-11 TRUE FALSE
MDY.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1995-05-04 2021-06-11 FALSE FALSE
MDY.Adjusted_Log Calc Log of log() -1.00 1995-05-04 2021-06-11 TRUE FALSE
MDY.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1995-05-04 2021-06-11 TRUE TRUE
MDY.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1995-05-04 2021-06-11 TRUE TRUE
EES.Open_YoY Calc Year over Year Percent -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Open_Log Calc Log of log() -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-02-23 2021-06-11 TRUE TRUE
EES.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-02-23 2021-06-11 TRUE TRUE
EES.High_YoY Calc Year over Year Percent -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.High_Log Calc Log of log() -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-02-23 2021-06-11 TRUE TRUE
EES.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-02-23 2021-06-11 TRUE TRUE
EES.Low_YoY Calc Year over Year Percent -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-02-23 2021-06-11 TRUE TRUE
EES.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Low_Log Calc Log of log() -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-02-23 2021-06-11 TRUE TRUE
EES.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-02-23 2021-06-11 TRUE TRUE
EES.Close_YoY Calc Year over Year Percent -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Close_Log Calc Log of log() -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-02-23 2021-06-11 TRUE TRUE
EES.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-02-23 2021-06-11 TRUE TRUE
EES.Volume_YoY Calc Year over Year Percent -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Volume_Log Calc Log of log() -1.00 2007-02-23 2021-06-11 TRUE TRUE
EES.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Adjusted_YoY Calc Year over Year Percent -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Adjusted_Log Calc Log of log() -1.00 2007-02-23 2021-06-11 FALSE FALSE
EES.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-02-23 2021-06-11 TRUE TRUE
EES.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-02-23 2021-06-11 TRUE TRUE
IJR.Open_YoY Calc Year over Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Open_Log Calc Log of log() -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IJR.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IJR.High_YoY Calc Year over Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.High_Log Calc Log of log() -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IJR.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IJR.Low_YoY Calc Year over Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Low_Log Calc Log of log() -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IJR.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IJR.Close_YoY Calc Year over Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Close_Log Calc Log of log() -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IJR.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IJR.Volume_YoY Calc Year over Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Volume_Log Calc Log of log() -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Adjusted_YoY Calc Year over Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Adjusted_Log Calc Log of log() -1.00 2000-05-26 2021-06-11 FALSE FALSE
IJR.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IJR.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
VGSTX.Open_YoY Calc Year over Year Percent -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.Open_Log Calc Log of log() -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.High_YoY Calc Year over Year Percent -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.High_Log Calc Log of log() -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Low_YoY Calc Year over Year Percent -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.Low_Log Calc Log of log() -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Close_YoY Calc Year over Year Percent -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.Close_Log Calc Log of log() -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Volume_YoY Calc Year over Year Percent -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Volume_Log Calc Log of log() -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Adjusted_YoY Calc Year over Year Percent -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1985-03-29 2021-06-11 FALSE FALSE
VGSTX.Adjusted_Log Calc Log of log() -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1985-03-29 2021-06-11 TRUE TRUE
VGSTX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1985-03-29 2021-06-11 TRUE TRUE
VFINX.Open_YoY Calc Year over Year Percent -1.00 1980-01-02 2021-06-11 FALSE FALSE
VFINX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1980-01-02 2021-06-11 FALSE FALSE
VFINX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1980-01-02 2021-06-11 TRUE FALSE
VFINX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1980-01-02 2021-06-11 FALSE FALSE
VFINX.Open_Log Calc Log of log() -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.High_YoY Calc Year over Year Percent -1.00 1980-01-02 2021-06-11 FALSE FALSE
VFINX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1980-01-02 2021-06-11 FALSE FALSE
VFINX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1980-01-02 2021-06-11 TRUE FALSE
VFINX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1980-01-02 2021-06-11 FALSE FALSE
VFINX.High_Log Calc Log of log() -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Low_YoY Calc Year over Year Percent -1.00 1980-01-02 2021-06-11 FALSE FALSE
VFINX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1980-01-02 2021-06-11 FALSE FALSE
VFINX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1980-01-02 2021-06-11 TRUE FALSE
VFINX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1980-01-02 2021-06-11 FALSE FALSE
VFINX.Low_Log Calc Log of log() -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Close_YoY Calc Year over Year Percent -1.00 1980-01-02 2021-06-11 FALSE FALSE
VFINX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1980-01-02 2021-06-11 FALSE FALSE
VFINX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1980-01-02 2021-06-11 TRUE FALSE
VFINX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1980-01-02 2021-06-11 FALSE FALSE
VFINX.Close_Log Calc Log of log() -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Volume_YoY Calc Year over Year Percent -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Volume_Log Calc Log of log() -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Adjusted_YoY Calc Year over Year Percent -1.00 1980-01-02 2021-06-11 FALSE FALSE
VFINX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1980-01-02 2021-06-11 FALSE FALSE
VFINX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1980-01-02 2021-06-11 TRUE FALSE
VFINX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1980-01-02 2021-06-11 FALSE FALSE
VFINX.Adjusted_Log Calc Log of log() -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1980-01-02 2021-06-11 TRUE TRUE
VFINX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1980-01-02 2021-06-11 TRUE TRUE
VOE.Open_YoY Calc Year over Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOE.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Open_Log Calc Log of log() -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOE.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOE.High_YoY Calc Year over Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOE.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.High_Log Calc Log of log() -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOE.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOE.Low_YoY Calc Year over Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOE.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Low_Log Calc Log of log() -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOE.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOE.Close_YoY Calc Year over Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOE.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Close_Log Calc Log of log() -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOE.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOE.Volume_YoY Calc Year over Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOE.Volume_Log Calc Log of log() -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Adjusted_YoY Calc Year over Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOE.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Adjusted_Log Calc Log of log() -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOE.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOE.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOT.Open_YoY Calc Year over Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-08-25 2021-06-11 TRUE FALSE
VOT.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Open_Log Calc Log of log() -1.00 2006-08-25 2021-06-11 TRUE FALSE
VOT.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOT.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.High_YoY Calc Year over Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.High_Log Calc Log of log() -1.00 2006-08-25 2021-06-11 TRUE FALSE
VOT.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOT.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Low_YoY Calc Year over Year Percent -1.00 2006-08-25 2021-06-11 TRUE FALSE
VOT.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-08-25 2021-06-11 TRUE FALSE
VOT.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Low_Log Calc Log of log() -1.00 2006-08-25 2021-06-11 TRUE FALSE
VOT.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOT.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Close_YoY Calc Year over Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-08-25 2021-06-11 TRUE FALSE
VOT.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Close_Log Calc Log of log() -1.00 2006-08-25 2021-06-11 TRUE FALSE
VOT.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOT.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Volume_YoY Calc Year over Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Volume_Log Calc Log of log() -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Adjusted_YoY Calc Year over Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-08-25 2021-06-11 TRUE FALSE
VOT.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-08-25 2021-06-11 FALSE FALSE
VOT.Adjusted_Log Calc Log of log() -1.00 2006-08-25 2021-06-11 TRUE FALSE
VOT.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-08-25 2021-06-11 TRUE TRUE
VOT.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-08-25 2021-06-11 FALSE FALSE
TMFGX.Open_YoY Calc Year over Year Percent -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-11-02 2021-06-11 TRUE FALSE
TMFGX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Open_Log Calc Log of log() -1.00 2010-11-02 2021-06-11 TRUE FALSE
TMFGX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.High_YoY Calc Year over Year Percent -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-11-02 2021-06-11 TRUE FALSE
TMFGX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.High_Log Calc Log of log() -1.00 2010-11-02 2021-06-11 TRUE FALSE
TMFGX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Low_YoY Calc Year over Year Percent -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-11-02 2021-06-11 TRUE FALSE
TMFGX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Low_Log Calc Log of log() -1.00 2010-11-02 2021-06-11 TRUE FALSE
TMFGX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Close_YoY Calc Year over Year Percent -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-11-02 2021-06-11 TRUE FALSE
TMFGX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Close_Log Calc Log of log() -1.00 2010-11-02 2021-06-11 TRUE FALSE
TMFGX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Volume_YoY Calc Year over Year Percent -1.00 2010-11-02 2021-06-11 TRUE TRUE
TMFGX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-11-02 2021-06-11 TRUE TRUE
TMFGX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-11-02 2021-06-11 TRUE TRUE
TMFGX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-11-02 2021-06-11 TRUE TRUE
TMFGX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-11-02 2021-06-11 TRUE TRUE
TMFGX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-11-02 2021-06-11 TRUE TRUE
TMFGX.Volume_Log Calc Log of log() -1.00 2010-11-02 2021-06-11 TRUE TRUE
TMFGX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-11-02 2021-06-11 TRUE TRUE
TMFGX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-11-02 2021-06-11 TRUE TRUE
TMFGX.Adjusted_YoY Calc Year over Year Percent -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-11-02 2021-06-11 TRUE FALSE
TMFGX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Adjusted_Log Calc Log of log() -1.00 2010-11-02 2021-06-11 TRUE FALSE
TMFGX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-11-02 2021-06-11 FALSE FALSE
TMFGX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-11-02 2021-06-11 FALSE FALSE
IWM.Open_YoY Calc Year over Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Open_Log Calc Log of log() -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWM.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWM.High_YoY Calc Year over Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.High_Log Calc Log of log() -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWM.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-26 2021-06-11 TRUE FALSE
IWM.Low_YoY Calc Year over Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Low_Log Calc Log of log() -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWM.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWM.Close_YoY Calc Year over Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Close_Log Calc Log of log() -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWM.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWM.Volume_YoY Calc Year over Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWM.Volume_Log Calc Log of log() -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Adjusted_YoY Calc Year over Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Adjusted_Log Calc Log of log() -1.00 2000-05-26 2021-06-11 FALSE FALSE
IWM.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
IWM.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-05-26 2021-06-11 TRUE TRUE
ONEQ.Open_YoY Calc Year over Year Percent -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2003-10-01 2021-06-11 TRUE FALSE
ONEQ.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Open_Log Calc Log of log() -1.00 2003-10-01 2021-06-11 TRUE FALSE
ONEQ.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2003-10-01 2021-06-11 TRUE TRUE
ONEQ.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.High_YoY Calc Year over Year Percent -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2003-10-01 2021-06-11 TRUE FALSE
ONEQ.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.High_Log Calc Log of log() -1.00 2003-10-01 2021-06-11 TRUE FALSE
ONEQ.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2003-10-01 2021-06-11 TRUE TRUE
ONEQ.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Low_YoY Calc Year over Year Percent -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2003-10-01 2021-06-11 TRUE FALSE
ONEQ.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Low_Log Calc Log of log() -1.00 2003-10-01 2021-06-11 TRUE FALSE
ONEQ.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2003-10-01 2021-06-11 TRUE TRUE
ONEQ.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Close_YoY Calc Year over Year Percent -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Close_Log Calc Log of log() -1.00 2003-10-01 2021-06-11 TRUE FALSE
ONEQ.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2003-10-01 2021-06-11 TRUE TRUE
ONEQ.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Volume_YoY Calc Year over Year Percent -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2003-10-01 2021-06-11 TRUE FALSE
ONEQ.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Volume_Log Calc Log of log() -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Adjusted_YoY Calc Year over Year Percent -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2003-10-01 2021-06-11 FALSE FALSE
ONEQ.Adjusted_Log Calc Log of log() -1.00 2003-10-01 2021-06-11 TRUE FALSE
ONEQ.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2003-10-01 2021-06-11 TRUE TRUE
ONEQ.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2003-10-01 2021-06-11 FALSE FALSE
HAINX.Open_YoY Calc Year over Year Percent -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1987-12-29 2021-06-11 TRUE FALSE
HAINX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.Open_Log Calc Log of log() -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.High_YoY Calc Year over Year Percent -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1987-12-29 2021-06-11 TRUE FALSE
HAINX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.High_Log Calc Log of log() -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.Low_YoY Calc Year over Year Percent -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1987-12-29 2021-06-11 TRUE FALSE
HAINX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.Low_Log Calc Log of log() -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.Close_YoY Calc Year over Year Percent -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1987-12-29 2021-06-11 TRUE FALSE
HAINX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.Close_Log Calc Log of log() -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.Volume_YoY Calc Year over Year Percent -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.Volume_Log Calc Log of log() -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.Adjusted_YoY Calc Year over Year Percent -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1987-12-29 2021-06-11 TRUE FALSE
HAINX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.Adjusted_Log Calc Log of log() -1.00 1987-12-29 2021-06-11 FALSE FALSE
HAINX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1987-12-29 2021-06-11 TRUE TRUE
HAINX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1987-12-29 2021-06-11 TRUE TRUE
VEU.Open_YoY Calc Year over Year Percent -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-03-08 2021-06-11 TRUE FALSE
VEU.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Open_Log Calc Log of log() -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-03-08 2021-06-11 TRUE TRUE
VEU.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-03-08 2021-06-11 TRUE TRUE
VEU.High_YoY Calc Year over Year Percent -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-03-08 2021-06-11 TRUE FALSE
VEU.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.High_Log Calc Log of log() -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-03-08 2021-06-11 TRUE TRUE
VEU.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-03-08 2021-06-11 TRUE TRUE
VEU.Low_YoY Calc Year over Year Percent -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-03-08 2021-06-11 TRUE FALSE
VEU.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Low_Log Calc Log of log() -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-03-08 2021-06-11 TRUE TRUE
VEU.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-03-08 2021-06-11 TRUE TRUE
VEU.Close_YoY Calc Year over Year Percent -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-03-08 2021-06-11 TRUE FALSE
VEU.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-03-08 2021-06-11 TRUE TRUE
VEU.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Close_Log Calc Log of log() -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-03-08 2021-06-11 TRUE TRUE
VEU.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-03-08 2021-06-11 TRUE TRUE
VEU.Volume_YoY Calc Year over Year Percent -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-03-08 2021-06-11 TRUE TRUE
VEU.Volume_Log Calc Log of log() -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Adjusted_YoY Calc Year over Year Percent -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-03-08 2021-06-11 TRUE FALSE
VEU.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-03-08 2021-06-11 TRUE TRUE
VEU.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Adjusted_Log Calc Log of log() -1.00 2007-03-08 2021-06-11 FALSE FALSE
VEU.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-03-08 2021-06-11 TRUE TRUE
VEU.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-03-08 2021-06-11 TRUE TRUE
BIL.Open_YoY Calc Year over Year Percent -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-05-30 2021-06-11 TRUE TRUE
BIL.Open_Log Calc Log of log() -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.High_YoY Calc Year over Year Percent -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-05-30 2021-06-11 TRUE TRUE
BIL.High_Log Calc Log of log() -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Low_YoY Calc Year over Year Percent -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-05-30 2021-06-11 TRUE TRUE
BIL.Low_Log Calc Log of log() -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Close_YoY Calc Year over Year Percent -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-05-30 2021-06-11 TRUE TRUE
BIL.Close_Log Calc Log of log() -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Volume_YoY Calc Year over Year Percent -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-05-30 2021-06-11 TRUE TRUE
BIL.Volume_Log Calc Log of log() -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Adjusted_YoY Calc Year over Year Percent -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-05-30 2021-06-11 TRUE TRUE
BIL.Adjusted_Log Calc Log of log() -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-05-30 2021-06-11 FALSE FALSE
BIL.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-05-30 2021-06-11 FALSE FALSE
IVOO.Open_YoY Calc Year over Year Percent -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Open_Log Calc Log of log() -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-09-09 2021-06-11 TRUE TRUE
IVOO.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-09-09 2021-06-11 TRUE TRUE
IVOO.High_YoY Calc Year over Year Percent -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.High_Log Calc Log of log() -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-09-09 2021-06-11 TRUE TRUE
IVOO.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Low_YoY Calc Year over Year Percent -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Low_Log Calc Log of log() -1.00 2010-09-09 2021-06-11 TRUE FALSE
IVOO.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-09-09 2021-06-11 TRUE TRUE
IVOO.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-09-09 2021-06-11 TRUE TRUE
IVOO.Close_YoY Calc Year over Year Percent -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-09-09 2021-06-11 TRUE FALSE
IVOO.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Close_Log Calc Log of log() -1.00 2010-09-09 2021-06-11 TRUE FALSE
IVOO.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-09-09 2021-06-11 TRUE TRUE
IVOO.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-09-09 2021-06-11 TRUE TRUE
IVOO.Volume_YoY Calc Year over Year Percent -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Volume_Log Calc Log of log() -1.00 2010-09-09 2021-06-11 TRUE TRUE
IVOO.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Adjusted_YoY Calc Year over Year Percent -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2010-09-09 2021-06-11 TRUE FALSE
IVOO.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2010-09-09 2021-06-11 FALSE FALSE
IVOO.Adjusted_Log Calc Log of log() -1.00 2010-09-09 2021-06-11 TRUE FALSE
IVOO.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2010-09-09 2021-06-11 TRUE TRUE
IVOO.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2010-09-09 2021-06-11 TRUE TRUE
VO.Open_YoY Calc Year over Year Percent -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Open_Log Calc Log of log() -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.High_YoY Calc Year over Year Percent -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.High_Log Calc Log of log() -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.Low_YoY Calc Year over Year Percent -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Low_Log Calc Log of log() -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.Close_YoY Calc Year over Year Percent -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Close_Log Calc Log of log() -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.Volume_YoY Calc Year over Year Percent -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.Volume_Log Calc Log of log() -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Adjusted_YoY Calc Year over Year Percent -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2004-01-30 2021-06-11 FALSE FALSE
VO.Adjusted_Log Calc Log of log() -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2004-01-30 2021-06-11 TRUE TRUE
VO.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2004-01-30 2021-06-11 TRUE TRUE
CZA.Open_YoY Calc Year over Year Percent -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-04-03 2021-06-11 TRUE TRUE
CZA.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Open_Log Calc Log of log() -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-04-03 2021-06-11 TRUE TRUE
CZA.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-04-03 2021-06-11 TRUE TRUE
CZA.High_YoY Calc Year over Year Percent -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-04-03 2021-06-11 TRUE TRUE
CZA.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.High_Log Calc Log of log() -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-04-03 2021-06-11 TRUE TRUE
CZA.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-04-03 2021-06-11 TRUE TRUE
CZA.Low_YoY Calc Year over Year Percent -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-04-03 2021-06-11 TRUE TRUE
CZA.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Low_Log Calc Log of log() -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-04-03 2021-06-11 TRUE TRUE
CZA.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-04-03 2021-06-11 TRUE TRUE
CZA.Close_YoY Calc Year over Year Percent -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-04-03 2021-06-11 TRUE TRUE
CZA.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-04-03 2021-06-11 TRUE TRUE
CZA.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Close_Log Calc Log of log() -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-04-03 2021-06-11 TRUE TRUE
CZA.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-04-03 2021-06-11 TRUE TRUE
CZA.Volume_YoY Calc Year over Year Percent -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Volume_Log Calc Log of log() -1.00 2007-04-03 2021-06-11 TRUE TRUE
CZA.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Adjusted_YoY Calc Year over Year Percent -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2007-04-03 2021-06-11 TRUE TRUE
CZA.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2007-04-03 2021-06-11 TRUE TRUE
CZA.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Adjusted_Log Calc Log of log() -1.00 2007-04-03 2021-06-11 FALSE FALSE
CZA.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2007-04-03 2021-06-11 TRUE TRUE
CZA.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2007-04-03 2021-06-11 TRUE TRUE
VYM.Open_YoY Calc Year over Year Percent -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-11-16 2021-06-11 TRUE TRUE
VYM.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Open_Log Calc Log of log() -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-11-16 2021-06-11 TRUE TRUE
VYM.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-11-16 2021-06-11 TRUE TRUE
VYM.High_YoY Calc Year over Year Percent -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-11-16 2021-06-11 TRUE TRUE
VYM.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.High_Log Calc Log of log() -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-11-16 2021-06-11 TRUE TRUE
VYM.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-11-16 2021-06-11 TRUE TRUE
VYM.Low_YoY Calc Year over Year Percent -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-11-16 2021-06-11 TRUE TRUE
VYM.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Low_Log Calc Log of log() -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-11-16 2021-06-11 TRUE TRUE
VYM.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-11-16 2021-06-11 TRUE TRUE
VYM.Close_YoY Calc Year over Year Percent -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-11-16 2021-06-11 TRUE TRUE
VYM.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Close_Log Calc Log of log() -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-11-16 2021-06-11 TRUE TRUE
VYM.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-11-16 2021-06-11 TRUE TRUE
VYM.Volume_YoY Calc Year over Year Percent -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Volume_Log Calc Log of log() -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Adjusted_YoY Calc Year over Year Percent -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2006-11-16 2021-06-11 TRUE TRUE
VYM.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Adjusted_Log Calc Log of log() -1.00 2006-11-16 2021-06-11 FALSE FALSE
VYM.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2006-11-16 2021-06-11 TRUE TRUE
VYM.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2006-11-16 2021-06-11 TRUE TRUE
ACWI.Open_YoY Calc Year over Year Percent -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2008-03-28 2021-06-11 TRUE FALSE
ACWI.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2008-03-28 2021-06-11 TRUE TRUE
ACWI.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Open_Log Calc Log of log() -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2008-03-28 2021-06-11 TRUE TRUE
ACWI.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2008-03-28 2021-06-11 TRUE TRUE
ACWI.High_YoY Calc Year over Year Percent -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2008-03-28 2021-06-11 TRUE TRUE
ACWI.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.High_Log Calc Log of log() -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2008-03-28 2021-06-11 TRUE TRUE
ACWI.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2008-03-28 2021-06-11 TRUE TRUE
ACWI.Low_YoY Calc Year over Year Percent -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2008-03-28 2021-06-11 TRUE TRUE
ACWI.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Low_Log Calc Log of log() -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2008-03-28 2021-06-11 TRUE TRUE
ACWI.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2008-03-28 2021-06-11 TRUE TRUE
ACWI.Close_YoY Calc Year over Year Percent -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2008-03-28 2021-06-11 TRUE TRUE
ACWI.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Close_Log Calc Log of log() -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2008-03-28 2021-06-11 TRUE TRUE
ACWI.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2008-03-28 2021-06-11 TRUE TRUE
ACWI.Volume_YoY Calc Year over Year Percent -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Volume_Log Calc Log of log() -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Adjusted_YoY Calc Year over Year Percent -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2008-03-28 2021-06-11 TRUE FALSE
ACWI.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2008-03-28 2021-06-11 TRUE TRUE
ACWI.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2008-03-28 2021-06-11 TRUE TRUE
ACWI.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2008-03-28 2021-06-11 FALSE FALSE
ACWI.Adjusted_Log Calc Log of log() -1.00 2008-03-28 2021-06-11 TRUE TRUE
ACWI.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2008-03-28 2021-06-11 TRUE TRUE
ACWI.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2008-03-28 2021-06-11 TRUE TRUE
SLY.Open_YoY Calc Year over Year Percent -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Open_Log Calc Log of log() -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2005-11-15 2021-06-11 TRUE TRUE
SLY.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2005-11-15 2021-06-11 TRUE TRUE
SLY.High_YoY Calc Year over Year Percent -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.High_Log Calc Log of log() -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2005-11-15 2021-06-11 TRUE TRUE
SLY.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2005-11-15 2021-06-11 TRUE TRUE
SLY.Low_YoY Calc Year over Year Percent -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Low_Log Calc Log of log() -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2005-11-15 2021-06-11 TRUE TRUE
SLY.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2005-11-15 2021-06-11 TRUE TRUE
SLY.Close_YoY Calc Year over Year Percent -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Close_Log Calc Log of log() -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2005-11-15 2021-06-11 TRUE TRUE
SLY.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2005-11-15 2021-06-11 TRUE TRUE
SLY.Volume_YoY Calc Year over Year Percent -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Volume_Log Calc Log of log() -1.00 2005-11-15 2021-06-11 TRUE TRUE
SLY.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Adjusted_YoY Calc Year over Year Percent -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Adjusted_Log Calc Log of log() -1.00 2005-11-15 2021-06-11 FALSE FALSE
SLY.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2005-11-15 2021-06-11 TRUE TRUE
SLY.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2005-11-15 2021-06-11 TRUE TRUE
QQQ.Open_YoY Calc Year over Year Percent -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1999-03-10 2021-06-11 TRUE FALSE
QQQ.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1999-03-10 2021-06-11 TRUE TRUE
QQQ.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Open_Log Calc Log of log() -1.00 1999-03-10 2021-06-11 TRUE FALSE
QQQ.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1999-03-10 2021-06-11 TRUE TRUE
QQQ.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.High_YoY Calc Year over Year Percent -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1999-03-10 2021-06-11 TRUE FALSE
QQQ.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1999-03-10 2021-06-11 TRUE TRUE
QQQ.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.High_Log Calc Log of log() -1.00 1999-03-10 2021-06-11 TRUE FALSE
QQQ.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1999-03-10 2021-06-11 TRUE TRUE
QQQ.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Low_YoY Calc Year over Year Percent -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1999-03-10 2021-06-11 TRUE TRUE
QQQ.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Low_Log Calc Log of log() -1.00 1999-03-10 2021-06-11 TRUE FALSE
QQQ.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1999-03-10 2021-06-11 TRUE TRUE
QQQ.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Close_YoY Calc Year over Year Percent -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1999-03-10 2021-06-11 TRUE FALSE
QQQ.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1999-03-10 2021-06-11 TRUE FALSE
QQQ.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1999-03-10 2021-06-11 TRUE TRUE
QQQ.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1999-03-10 2021-06-11 TRUE TRUE
QQQ.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Close_Log Calc Log of log() -1.00 1999-03-10 2021-06-11 TRUE FALSE
QQQ.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1999-03-10 2021-06-11 TRUE TRUE
QQQ.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Volume_YoY Calc Year over Year Percent -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Volume_Log Calc Log of log() -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Adjusted_YoY Calc Year over Year Percent -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1999-03-10 2021-06-11 TRUE FALSE
QQQ.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1999-03-10 2021-06-11 TRUE FALSE
QQQ.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1999-03-10 2021-06-11 TRUE TRUE
QQQ.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1999-03-10 2021-06-11 TRUE TRUE
QQQ.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1999-03-10 2021-06-11 FALSE FALSE
QQQ.Adjusted_Log Calc Log of log() -1.00 1999-03-10 2021-06-11 TRUE FALSE
QQQ.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1999-03-10 2021-06-11 TRUE TRUE
QQQ.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1999-03-10 2021-06-11 FALSE FALSE
HYMB.Open_YoY Calc Year over Year Percent -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-14 2021-06-11 TRUE FALSE
HYMB.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Open_Log Calc Log of log() -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.High_YoY Calc Year over Year Percent -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-14 2021-06-11 TRUE FALSE
HYMB.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.High_Log Calc Log of log() -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.Low_YoY Calc Year over Year Percent -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Low_Log Calc Log of log() -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.Close_YoY Calc Year over Year Percent -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Close_Log Calc Log of log() -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.Volume_YoY Calc Year over Year Percent -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.Volume_Log Calc Log of log() -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-14 2021-06-11 TRUE FALSE
HYMB.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-14 2021-06-11 TRUE FALSE
HYMB.Adjusted_YoY Calc Year over Year Percent -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2011-04-14 2021-06-11 FALSE FALSE
HYMB.Adjusted_Log Calc Log of log() -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2011-04-14 2021-06-11 TRUE TRUE
HYMB.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2011-04-14 2021-06-11 TRUE TRUE
GOLD.Open_YoY Calc Year over Year Percent -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1985-02-13 2021-06-11 TRUE FALSE
GOLD.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1985-02-13 2021-06-11 TRUE TRUE
GOLD.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1985-02-13 2021-06-11 TRUE TRUE
GOLD.Open_Log Calc Log of log() -1.00 1985-02-13 2021-06-11 TRUE TRUE
GOLD.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1985-02-13 2021-06-11 TRUE FALSE
GOLD.High_YoY Calc Year over Year Percent -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1985-02-13 2021-06-11 TRUE TRUE
GOLD.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1985-02-13 2021-06-11 TRUE TRUE
GOLD.High_Log Calc Log of log() -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1985-02-13 2021-06-11 TRUE FALSE
GOLD.Low_YoY Calc Year over Year Percent -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1985-02-13 2021-06-11 TRUE TRUE
GOLD.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1985-02-13 2021-06-11 TRUE TRUE
GOLD.Low_Log Calc Log of log() -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1985-02-13 2021-06-11 TRUE FALSE
GOLD.Close_YoY Calc Year over Year Percent -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1985-02-13 2021-06-11 TRUE TRUE
GOLD.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1985-02-13 2021-06-11 TRUE TRUE
GOLD.Close_Log Calc Log of log() -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1985-02-13 2021-06-11 TRUE FALSE
GOLD.Volume_YoY Calc Year over Year Percent -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Volume_Log Calc Log of log() -1.00 1985-02-13 2021-06-11 TRUE TRUE
GOLD.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Adjusted_YoY Calc Year over Year Percent -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1985-02-13 2021-06-11 TRUE TRUE
GOLD.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1985-02-13 2021-06-11 TRUE TRUE
GOLD.Adjusted_Log Calc Log of log() -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1985-02-13 2021-06-11 FALSE FALSE
GOLD.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1985-02-13 2021-06-11 TRUE FALSE
BKR.Open_YoY Calc Year over Year Percent -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Open_Log Calc Log of log() -1.00 1987-04-06 2021-06-11 TRUE TRUE
BKR.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1987-04-06 2021-06-11 TRUE TRUE
BKR.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1987-04-06 2021-06-11 TRUE TRUE
BKR.High_YoY Calc Year over Year Percent -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.High_Log Calc Log of log() -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1987-04-06 2021-06-11 TRUE TRUE
BKR.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1987-04-06 2021-06-11 TRUE TRUE
BKR.Low_YoY Calc Year over Year Percent -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Low_Log Calc Log of log() -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1987-04-06 2021-06-11 TRUE TRUE
BKR.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1987-04-06 2021-06-11 TRUE TRUE
BKR.Close_YoY Calc Year over Year Percent -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1987-04-06 2021-06-11 TRUE TRUE
BKR.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Close_Log Calc Log of log() -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1987-04-06 2021-06-11 TRUE TRUE
BKR.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1987-04-06 2021-06-11 TRUE TRUE
BKR.Volume_YoY Calc Year over Year Percent -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Volume_Log Calc Log of log() -1.00 1987-04-06 2021-06-11 TRUE TRUE
BKR.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Adjusted_YoY Calc Year over Year Percent -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1987-04-06 2021-06-11 TRUE TRUE
BKR.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Adjusted_Log Calc Log of log() -1.00 1987-04-06 2021-06-11 FALSE FALSE
BKR.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1987-04-06 2021-06-11 TRUE TRUE
BKR.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1987-04-06 2021-06-11 TRUE TRUE
SLB.Open_YoY Calc Year over Year Percent -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1981-12-31 2021-06-11 TRUE TRUE
SLB.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Open_Log Calc Log of log() -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1981-12-31 2021-06-11 TRUE TRUE
SLB.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1981-12-31 2021-06-11 TRUE TRUE
SLB.High_YoY Calc Year over Year Percent -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1981-12-31 2021-06-11 TRUE TRUE
SLB.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.High_Log Calc Log of log() -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1981-12-31 2021-06-11 TRUE TRUE
SLB.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1981-12-31 2021-06-11 TRUE TRUE
SLB.Low_YoY Calc Year over Year Percent -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1981-12-31 2021-06-11 TRUE TRUE
SLB.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Low_Log Calc Log of log() -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1981-12-31 2021-06-11 TRUE TRUE
SLB.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1981-12-31 2021-06-11 TRUE TRUE
SLB.Close_YoY Calc Year over Year Percent -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1981-12-31 2021-06-11 TRUE TRUE
SLB.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Close_Log Calc Log of log() -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1981-12-31 2021-06-11 TRUE TRUE
SLB.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1981-12-31 2021-06-11 TRUE TRUE
SLB.Volume_YoY Calc Year over Year Percent -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1981-12-31 2021-06-11 TRUE TRUE
SLB.Volume_Log Calc Log of log() -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Adjusted_YoY Calc Year over Year Percent -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1981-12-31 2021-06-11 TRUE TRUE
SLB.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Adjusted_Log Calc Log of log() -1.00 1981-12-31 2021-06-11 FALSE FALSE
SLB.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1981-12-31 2021-06-11 TRUE TRUE
SLB.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1981-12-31 2021-06-11 TRUE TRUE
HAL.Open_YoY Calc Year over Year Percent -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Open_Log Calc Log of log() -1.00 1972-06-01 2021-06-11 TRUE TRUE
HAL.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1972-06-01 2021-06-11 TRUE TRUE
HAL.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1972-06-01 2021-06-11 TRUE TRUE
HAL.High_YoY Calc Year over Year Percent -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.High_Log Calc Log of log() -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1972-06-01 2021-06-11 TRUE TRUE
HAL.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1972-06-01 2021-06-11 TRUE TRUE
HAL.Low_YoY Calc Year over Year Percent -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Low_Log Calc Log of log() -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1972-06-01 2021-06-11 TRUE TRUE
HAL.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1972-06-01 2021-06-11 TRUE TRUE
HAL.Close_YoY Calc Year over Year Percent -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Close_Log Calc Log of log() -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1972-06-01 2021-06-11 TRUE TRUE
HAL.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1972-06-01 2021-06-11 TRUE TRUE
HAL.Volume_YoY Calc Year over Year Percent -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1972-06-01 2021-06-11 TRUE TRUE
HAL.Volume_Log Calc Log of log() -1.00 1972-06-01 2021-06-11 TRUE TRUE
HAL.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Adjusted_YoY Calc Year over Year Percent -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Adjusted_Log Calc Log of log() -1.00 1972-06-01 2021-06-11 FALSE FALSE
HAL.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1972-06-01 2021-06-11 TRUE TRUE
HAL.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1972-06-01 2021-06-11 TRUE TRUE
IP.Open_YoY Calc Year over Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1962-01-02 2021-06-11 TRUE TRUE
IP.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Open_Log Calc Log of log() -1.00 1962-01-02 2021-06-11 TRUE TRUE
IP.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1962-01-02 2021-06-11 TRUE TRUE
IP.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1962-01-02 2021-06-11 TRUE TRUE
IP.High_YoY Calc Year over Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1962-01-02 2021-06-11 TRUE TRUE
IP.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.High_Log Calc Log of log() -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1962-01-02 2021-06-11 TRUE TRUE
IP.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1962-01-02 2021-06-11 TRUE TRUE
IP.Low_YoY Calc Year over Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1962-01-02 2021-06-11 TRUE TRUE
IP.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Low_Log Calc Log of log() -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1962-01-02 2021-06-11 TRUE TRUE
IP.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1962-01-02 2021-06-11 TRUE TRUE
IP.Close_YoY Calc Year over Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1962-01-02 2021-06-11 TRUE TRUE
IP.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Close_Log Calc Log of log() -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1962-01-02 2021-06-11 TRUE TRUE
IP.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1962-01-02 2021-06-11 TRUE TRUE
IP.Volume_YoY Calc Year over Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Volume_Log Calc Log of log() -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Adjusted_YoY Calc Year over Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1962-01-02 2021-06-11 TRUE TRUE
IP.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Adjusted_Log Calc Log of log() -1.00 1962-01-02 2021-06-11 FALSE FALSE
IP.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1962-01-02 2021-06-11 TRUE TRUE
IP.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1962-01-02 2021-06-11 TRUE TRUE
PKG.Open_YoY Calc Year over Year Percent -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Open_Log Calc Log of log() -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-01-28 2021-06-11 TRUE TRUE
PKG.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-01-28 2021-06-11 TRUE TRUE
PKG.High_YoY Calc Year over Year Percent -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.High_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.High_Log Calc Log of log() -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.High_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-01-28 2021-06-11 TRUE TRUE
PKG.High_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-01-28 2021-06-11 TRUE TRUE
PKG.Low_YoY Calc Year over Year Percent -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Low_Log Calc Log of log() -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-01-28 2021-06-11 TRUE TRUE
PKG.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-01-28 2021-06-11 TRUE TRUE
PKG.Close_YoY Calc Year over Year Percent -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Close_Log Calc Log of log() -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-01-28 2021-06-11 TRUE TRUE
PKG.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-01-28 2021-06-11 TRUE TRUE
PKG.Volume_YoY Calc Year over Year Percent -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-01-28 2021-06-11 TRUE TRUE
PKG.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-01-28 2021-06-11 TRUE TRUE
PKG.Volume_Log Calc Log of log() -1.00 2000-01-28 2021-06-11 TRUE FALSE
PKG.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-01-28 2021-06-11 TRUE FALSE
PKG.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-01-28 2021-06-11 TRUE FALSE
PKG.Adjusted_YoY Calc Year over Year Percent -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Adjusted_Log Calc Log of log() -1.00 2000-01-28 2021-06-11 FALSE FALSE
PKG.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 2000-01-28 2021-06-11 TRUE TRUE
PKG.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 2000-01-28 2021-06-11 TRUE TRUE
UPS.Open_YoY Calc Year over Year Percent -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1999-11-10 2021-06-11 TRUE TRUE
UPS.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Open_Log Calc Log of log() -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1999-11-10 2021-06-11 TRUE TRUE
UPS.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1999-11-10 2021-06-11 TRUE TRUE
UPS.High_YoY Calc Year over Year Percent -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1999-11-10 2021-06-11 TRUE TRUE
UPS.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.High_Log Calc Log of log() -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1999-11-10 2021-06-11 TRUE TRUE
UPS.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1999-11-10 2021-06-11 TRUE TRUE
UPS.Low_YoY Calc Year over Year Percent -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1999-11-10 2021-06-11 TRUE TRUE
UPS.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1999-11-10 2021-06-11 TRUE FALSE
UPS.Low_Log Calc Log of log() -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1999-11-10 2021-06-11 TRUE TRUE
UPS.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1999-11-10 2021-06-11 TRUE TRUE
UPS.Close_YoY Calc Year over Year Percent -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1999-11-10 2021-06-11 TRUE TRUE
UPS.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1999-11-10 2021-06-11 TRUE FALSE
UPS.Close_Log Calc Log of log() -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1999-11-10 2021-06-11 TRUE TRUE
UPS.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1999-11-10 2021-06-11 TRUE TRUE
UPS.Volume_YoY Calc Year over Year Percent -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Volume_Log Calc Log of log() -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Adjusted_YoY Calc Year over Year Percent -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1999-11-10 2021-06-11 TRUE TRUE
UPS.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1999-11-10 2021-06-11 TRUE TRUE
UPS.Adjusted_Log Calc Log of log() -1.00 1999-11-10 2021-06-11 FALSE FALSE
UPS.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1999-11-10 2021-06-11 TRUE TRUE
UPS.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1999-11-10 2021-06-11 TRUE TRUE
FDX.Open_YoY Calc Year over Year Percent -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1978-04-12 2021-06-11 TRUE TRUE
FDX.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Open_Log Calc Log of log() -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1978-04-12 2021-06-11 TRUE TRUE
FDX.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1978-04-12 2021-06-11 TRUE TRUE
FDX.High_YoY Calc Year over Year Percent -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1978-04-12 2021-06-11 TRUE TRUE
FDX.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.High_Log Calc Log of log() -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1978-04-12 2021-06-11 TRUE TRUE
FDX.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1978-04-12 2021-06-11 TRUE TRUE
FDX.Low_YoY Calc Year over Year Percent -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1978-04-12 2021-06-11 TRUE TRUE
FDX.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Low_Log Calc Log of log() -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1978-04-12 2021-06-11 TRUE TRUE
FDX.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1978-04-12 2021-06-11 TRUE TRUE
FDX.Close_YoY Calc Year over Year Percent -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1978-04-12 2021-06-11 TRUE TRUE
FDX.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Close_Log Calc Log of log() -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1978-04-12 2021-06-11 TRUE TRUE
FDX.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1978-04-12 2021-06-11 TRUE TRUE
FDX.Volume_YoY Calc Year over Year Percent -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Volume_Log Calc Log of log() -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1978-04-12 2021-06-11 TRUE FALSE
FDX.Adjusted_YoY Calc Year over Year Percent -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1978-04-12 2021-06-11 TRUE TRUE
FDX.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Adjusted_Log Calc Log of log() -1.00 1978-04-12 2021-06-11 FALSE FALSE
FDX.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1978-04-12 2021-06-11 TRUE TRUE
FDX.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1978-04-12 2021-06-11 TRUE TRUE
T.Open_YoY Calc Year over Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Open_Log Calc Log of log() -1.00 1983-11-21 2021-06-11 TRUE TRUE
T.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.High_YoY Calc Year over Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.High_Log Calc Log of log() -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1983-11-21 2021-06-11 TRUE TRUE
T.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Low_YoY Calc Year over Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Low_Log Calc Log of log() -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1983-11-21 2021-06-11 TRUE TRUE
T.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Close_YoY Calc Year over Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Close_Log Calc Log of log() -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1983-11-21 2021-06-11 TRUE TRUE
T.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Volume_YoY Calc Year over Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Volume_Log Calc Log of log() -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1983-11-21 2021-06-11 TRUE TRUE
T.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Adjusted_YoY Calc Year over Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1983-11-21 2021-06-11 TRUE TRUE
T.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Adjusted_Log Calc Log of log() -1.00 1983-11-21 2021-06-11 FALSE FALSE
T.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1983-11-21 2021-06-11 TRUE TRUE
T.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Open_YoY Calc Year over Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Open_YoY4 Calc 4 Year over 4 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Open_YoY5 Calc 5 Year over 5 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Open_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1983-11-21 2021-06-11 TRUE FALSE
VZ.Open_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Open_SmoothDer Calc Derivative of Smoothed /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Open_Log Calc Log of log() -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Open_mva200 Calc 200 Day MA 200 Day MA -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Open_mva050 Calc 50 Day MA 50 Day MA -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.High_YoY Calc Year over Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.High_YoY4 Calc 4 Year over 4 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.High_YoY5 Calc 5 Year over 5 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.High_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1983-11-21 2021-06-11 TRUE FALSE
VZ.High_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.High_SmoothDer Calc Derivative of Smoothed /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.High_Log Calc Log of log() -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.High_mva200 Calc 200 Day MA 200 Day MA -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.High_mva050 Calc 50 Day MA 50 Day MA -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Low_YoY Calc Year over Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Low_YoY4 Calc 4 Year over 4 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Low_YoY5 Calc 5 Year over 5 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Low_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1983-11-21 2021-06-11 TRUE TRUE
VZ.Low_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Low_SmoothDer Calc Derivative of Smoothed /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Low_Log Calc Log of log() -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Low_mva200 Calc 200 Day MA 200 Day MA -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Low_mva050 Calc 50 Day MA 50 Day MA -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Close_YoY Calc Year over Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Close_YoY4 Calc 4 Year over 4 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Close_YoY5 Calc 5 Year over 5 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Close_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1983-11-21 2021-06-11 TRUE FALSE
VZ.Close_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Close_SmoothDer Calc Derivative of Smoothed /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Close_Log Calc Log of log() -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Close_mva200 Calc 200 Day MA 200 Day MA -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Close_mva050 Calc 50 Day MA 50 Day MA -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Volume_YoY Calc Year over Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Volume_YoY4 Calc 4 Year over 4 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Volume_YoY5 Calc 5 Year over 5 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Volume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Volume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Volume_SmoothDer Calc Derivative of Smoothed /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Volume_Log Calc Log of log() -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Volume_mva200 Calc 200 Day MA 200 Day MA -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Volume_mva050 Calc 50 Day MA 50 Day MA -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Adjusted_YoY Calc Year over Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Adjusted_YoY4 Calc 4 Year over 4 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Adjusted_YoY5 Calc 5 Year over 5 Year Percent -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Adjusted_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1983-11-21 2021-06-11 TRUE TRUE
VZ.Adjusted_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Adjusted_SmoothDer Calc Derivative of Smoothed /period -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Adjusted_Log Calc Log of log() -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Adjusted_mva200 Calc 200 Day MA 200 Day MA -1.00 1983-11-21 2021-06-11 FALSE FALSE
VZ.Adjusted_mva050 Calc 50 Day MA 50 Day MA -1.00 1983-11-21 2021-06-11 FALSE FALSE
ISMMANPMI_YoY Calc Institute of Supply Managment PMI Composite Index Year over Year Percent -1.00 1948-01-01 2021-05-01 FALSE FALSE
ISMMANPMI_YoY4 Calc Institute of Supply Managment PMI Composite Index 4 Year over 4 Year Percent -1.00 1948-01-01 2021-05-01 FALSE FALSE
ISMMANPMI_YoY5 Calc Institute of Supply Managment PMI Composite Index 5 Year over 5 Year Percent -1.00 1948-01-01 2021-05-01 FALSE FALSE
ISMMANPMI_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Institute of Supply Managment PMI Composite Index /period -1.00 1948-01-01 2021-05-01 FALSE FALSE
ISMMANPMI_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Institute of Supply Managment PMI Composite Index /period -1.00 1948-01-01 2021-05-01 FALSE FALSE
ISMMANPMI_SmoothDer Calc Derivative of Smoothed Institute of Supply Managment PMI Composite Index /period -1.00 1948-01-01 2021-05-01 FALSE FALSE
ISMMANPMI_Log Calc Log of Institute of Supply Managment PMI Composite Index log() -1.00 1948-01-01 2021-05-01 TRUE FALSE
ISMMANPMI_mva200 Calc Institute of Supply Managment PMI Composite Index 200 Day MA 200 Day MA -1.00 1948-01-01 2021-05-01 TRUE TRUE
ISMMANPMI_mva050 Calc Institute of Supply Managment PMI Composite Index 50 Day MA 50 Day MA -1.00 1948-01-01 2021-05-01 TRUE FALSE
MULTPLSP500PERATIOMONTH_YoY Calc S&P 500 TTM P/E Year over Year Percent -1.00 1910-01-01 2021-06-01 TRUE FALSE
MULTPLSP500PERATIOMONTH_YoY4 Calc S&P 500 TTM P/E 4 Year over 4 Year Percent -1.00 1910-01-01 2021-06-01 TRUE FALSE
MULTPLSP500PERATIOMONTH_YoY5 Calc S&P 500 TTM P/E 5 Year over 5 Year Percent -1.00 1910-01-01 2021-06-01 FALSE FALSE
MULTPLSP500PERATIOMONTH_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) S&P 500 TTM P/E /period -1.00 1910-01-01 2021-06-01 TRUE TRUE
MULTPLSP500PERATIOMONTH_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) S&P 500 TTM P/E /period -1.00 1910-01-01 2021-06-01 FALSE FALSE
MULTPLSP500PERATIOMONTH_SmoothDer Calc Derivative of Smoothed S&P 500 TTM P/E /period -1.00 1910-01-01 2021-06-01 FALSE FALSE
MULTPLSP500PERATIOMONTH_Log Calc Log of S&P 500 TTM P/E log() -1.00 1910-01-01 2021-06-01 TRUE TRUE
MULTPLSP500PERATIOMONTH_mva200 Calc S&P 500 TTM P/E 200 Day MA 200 Day MA -1.00 1910-01-01 2021-06-01 TRUE TRUE
MULTPLSP500PERATIOMONTH_mva050 Calc S&P 500 TTM P/E 50 Day MA 50 Day MA -1.00 1910-01-01 2021-06-01 TRUE TRUE
MULTPLSP500SALESQUARTER_YoY Calc S&P 500 TTM Sales (Not Inflation Adjusted) Year over Year Percent -1.00 2000-12-31 2020-12-31 TRUE TRUE
MULTPLSP500SALESQUARTER_YoY4 Calc S&P 500 TTM Sales (Not Inflation Adjusted) 4 Year over 4 Year Percent -1.00 2000-12-31 2020-12-31 FALSE FALSE
MULTPLSP500SALESQUARTER_YoY5 Calc S&P 500 TTM Sales (Not Inflation Adjusted) 5 Year over 5 Year Percent -1.00 2000-12-31 2020-12-31 FALSE FALSE
MULTPLSP500SALESQUARTER_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) S&P 500 TTM Sales (Not Inflation Adjusted) /period -1.00 2000-12-31 2020-12-31 FALSE FALSE
MULTPLSP500SALESQUARTER_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) S&P 500 TTM Sales (Not Inflation Adjusted) /period -1.00 2000-12-31 2020-12-31 FALSE FALSE
MULTPLSP500SALESQUARTER_SmoothDer Calc Derivative of Smoothed S&P 500 TTM Sales (Not Inflation Adjusted) /period -1.00 2000-12-31 2020-12-31 FALSE FALSE
MULTPLSP500SALESQUARTER_Log Calc Log of S&P 500 TTM Sales (Not Inflation Adjusted) log() -1.00 2000-12-31 2020-12-31 TRUE FALSE
MULTPLSP500SALESQUARTER_mva200 Calc S&P 500 TTM Sales (Not Inflation Adjusted) 200 Day MA 200 Day MA -1.00 2000-12-31 2020-12-31 FALSE FALSE
MULTPLSP500SALESQUARTER_mva050 Calc S&P 500 TTM Sales (Not Inflation Adjusted) 50 Day MA 50 Day MA -1.00 2000-12-31 2020-12-31 TRUE FALSE
MULTPLSP500DIVYIELDMONTH_YoY Calc S&P 500 Dividend Yield by Month Year over Year Percent -1.00 1910-01-31 2021-06-01 TRUE FALSE
MULTPLSP500DIVYIELDMONTH_YoY4 Calc S&P 500 Dividend Yield by Month 4 Year over 4 Year Percent -1.00 1910-01-31 2021-06-01 TRUE FALSE
MULTPLSP500DIVYIELDMONTH_YoY5 Calc S&P 500 Dividend Yield by Month 5 Year over 5 Year Percent -1.00 1910-01-31 2021-06-01 FALSE FALSE
MULTPLSP500DIVYIELDMONTH_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) S&P 500 Dividend Yield by Month /period -1.00 1910-01-31 2021-06-01 FALSE FALSE
MULTPLSP500DIVYIELDMONTH_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) S&P 500 Dividend Yield by Month /period -1.00 1910-01-31 2021-06-01 FALSE FALSE
MULTPLSP500DIVYIELDMONTH_SmoothDer Calc Derivative of Smoothed S&P 500 Dividend Yield by Month /period -1.00 1910-01-31 2021-06-01 TRUE TRUE
MULTPLSP500DIVYIELDMONTH_Log Calc Log of S&P 500 Dividend Yield by Month log() -1.00 1910-01-31 2021-06-01 FALSE FALSE
MULTPLSP500DIVYIELDMONTH_mva200 Calc S&P 500 Dividend Yield by Month 200 Day MA 200 Day MA -1.00 1910-01-31 2021-06-01 FALSE FALSE
MULTPLSP500DIVYIELDMONTH_mva050 Calc S&P 500 Dividend Yield by Month 50 Day MA 50 Day MA -1.00 1910-01-31 2021-06-01 FALSE FALSE
MULTPLSP500DIVMONTH_YoY Calc S&P 500 Dividend by Month (Inflation Adjusted) Year over Year Percent -1.00 1871-01-31 2021-03-31 TRUE FALSE
MULTPLSP500DIVMONTH_YoY4 Calc S&P 500 Dividend by Month (Inflation Adjusted) 4 Year over 4 Year Percent -1.00 1871-01-31 2021-03-31 FALSE FALSE
MULTPLSP500DIVMONTH_YoY5 Calc S&P 500 Dividend by Month (Inflation Adjusted) 5 Year over 5 Year Percent -1.00 1871-01-31 2021-03-31 FALSE FALSE
MULTPLSP500DIVMONTH_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) S&P 500 Dividend by Month (Inflation Adjusted) /period -1.00 1871-01-31 2021-03-31 FALSE FALSE
MULTPLSP500DIVMONTH_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) S&P 500 Dividend by Month (Inflation Adjusted) /period -1.00 1871-01-31 2021-03-31 FALSE FALSE
MULTPLSP500DIVMONTH_SmoothDer Calc Derivative of Smoothed S&P 500 Dividend by Month (Inflation Adjusted) /period -1.00 1871-01-31 2021-03-31 TRUE TRUE
MULTPLSP500DIVMONTH_Log Calc Log of S&P 500 Dividend by Month (Inflation Adjusted) log() -1.00 1871-01-31 2021-03-31 TRUE FALSE
MULTPLSP500DIVMONTH_mva200 Calc S&P 500 Dividend by Month (Inflation Adjusted) 200 Day MA 200 Day MA -1.00 1871-01-31 2021-03-31 FALSE FALSE
MULTPLSP500DIVMONTH_mva050 Calc S&P 500 Dividend by Month (Inflation Adjusted) 50 Day MA 50 Day MA -1.00 1871-01-31 2021-03-31 FALSE FALSE
CHRISCMEHG1_YoY Calc Copper Futures, Continuous Contract #1 (HG1) (Front Month) Year over Year Percent -1.00 1871-01-01 1900-01-01 FALSE FALSE
CHRISCMEHG1_YoY4 Calc Copper Futures, Continuous Contract #1 (HG1) (Front Month) 4 Year over 4 Year Percent -1.00 1871-01-01 1900-01-01 FALSE FALSE
CHRISCMEHG1_YoY5 Calc Copper Futures, Continuous Contract #1 (HG1) (Front Month) 5 Year over 5 Year Percent -1.00 1871-01-01 1900-01-01 FALSE FALSE
CHRISCMEHG1_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Copper Futures, Continuous Contract #1 (HG1) (Front Month) /period -1.00 1871-01-01 1900-01-01 TRUE TRUE
CHRISCMEHG1_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Copper Futures, Continuous Contract #1 (HG1) (Front Month) /period -1.00 1871-01-01 1900-01-01 FALSE FALSE
CHRISCMEHG1_SmoothDer Calc Derivative of Smoothed Copper Futures, Continuous Contract #1 (HG1) (Front Month) /period -1.00 1871-01-01 1900-01-01 FALSE FALSE
CHRISCMEHG1_Log Calc Log of Copper Futures, Continuous Contract #1 (HG1) (Front Month) log() -1.00 1871-01-01 1900-01-01 FALSE FALSE
CHRISCMEHG1_mva200 Calc Copper Futures, Continuous Contract #1 (HG1) (Front Month) 200 Day MA 200 Day MA -1.00 1871-01-01 1900-01-01 TRUE TRUE
CHRISCMEHG1_mva050 Calc Copper Futures, Continuous Contract #1 (HG1) (Front Month) 50 Day MA 50 Day MA -1.00 1871-01-01 1900-01-01 TRUE TRUE
WWDIWLDISAIRGOODMTK1_YoY Calc Air transport, freight Year over Year Percent -1.00 1871-01-01 1900-01-01 TRUE TRUE
WWDIWLDISAIRGOODMTK1_YoY4 Calc Air transport, freight 4 Year over 4 Year Percent -1.00 1871-01-01 1900-01-01 FALSE FALSE
WWDIWLDISAIRGOODMTK1_YoY5 Calc Air transport, freight 5 Year over 5 Year Percent -1.00 1871-01-01 1900-01-01 FALSE FALSE
WWDIWLDISAIRGOODMTK1_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Air transport, freight /period -1.00 1871-01-01 1900-01-01 FALSE FALSE
WWDIWLDISAIRGOODMTK1_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Air transport, freight /period -1.00 1871-01-01 1900-01-01 FALSE FALSE
WWDIWLDISAIRGOODMTK1_SmoothDer Calc Derivative of Smoothed Air transport, freight /period -1.00 1871-01-01 1900-01-01 FALSE FALSE
WWDIWLDISAIRGOODMTK1_Log Calc Log of Air transport, freight log() -1.00 1871-01-01 1900-01-01 TRUE TRUE
WWDIWLDISAIRGOODMTK1_mva200 Calc Air transport, freight 200 Day MA 200 Day MA -1.00 1871-01-01 1900-01-01 TRUE TRUE
WWDIWLDISAIRGOODMTK1_mva050 Calc Air transport, freight 50 Day MA 50 Day MA -1.00 1871-01-01 1900-01-01 TRUE TRUE
PETA103600001M_YoY Calc U.S. Total Gasoline Retail Sales by Refiners, Monthly Year over Year Percent -1.00 1973-12-31 2018-12-31 FALSE FALSE
PETA103600001M_YoY4 Calc U.S. Total Gasoline Retail Sales by Refiners, Monthly 4 Year over 4 Year Percent -1.00 1973-12-31 2018-12-31 TRUE FALSE
PETA103600001M_YoY5 Calc U.S. Total Gasoline Retail Sales by Refiners, Monthly 5 Year over 5 Year Percent -1.00 1973-12-31 2018-12-31 FALSE FALSE
PETA103600001M_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) U.S. Total Gasoline Retail Sales by Refiners, Monthly /period -1.00 1973-12-31 2018-12-31 TRUE TRUE
PETA103600001M_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) U.S. Total Gasoline Retail Sales by Refiners, Monthly /period -1.00 1973-12-31 2018-12-31 FALSE FALSE
PETA103600001M_SmoothDer Calc Derivative of Smoothed U.S. Total Gasoline Retail Sales by Refiners, Monthly /period -1.00 1973-12-31 2018-12-31 FALSE FALSE
PETA103600001M_Log Calc Log of U.S. Total Gasoline Retail Sales by Refiners, Monthly log() -1.00 1973-12-31 2018-12-31 TRUE TRUE
PETA103600001M_mva200 Calc U.S. Total Gasoline Retail Sales by Refiners, Monthly 200 Day MA 200 Day MA -1.00 1973-12-31 2018-12-31 TRUE FALSE
PETA103600001M_mva050 Calc U.S. Total Gasoline Retail Sales by Refiners, Monthly 50 Day MA 50 Day MA -1.00 1973-12-31 2018-12-31 TRUE TRUE
PETA123600001M_YoY Calc U.S. Regular Gasoline Retail Sales by Refiners, Monthly Year over Year Percent -1.00 1973-12-31 2018-12-31 FALSE FALSE
PETA123600001M_YoY4 Calc U.S. Regular Gasoline Retail Sales by Refiners, Monthly 4 Year over 4 Year Percent -1.00 1973-12-31 2018-12-31 TRUE FALSE
PETA123600001M_YoY5 Calc U.S. Regular Gasoline Retail Sales by Refiners, Monthly 5 Year over 5 Year Percent -1.00 1973-12-31 2018-12-31 FALSE FALSE
PETA123600001M_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) U.S. Regular Gasoline Retail Sales by Refiners, Monthly /period -1.00 1973-12-31 2018-12-31 TRUE TRUE
PETA123600001M_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) U.S. Regular Gasoline Retail Sales by Refiners, Monthly /period -1.00 1973-12-31 2018-12-31 FALSE FALSE
PETA123600001M_SmoothDer Calc Derivative of Smoothed U.S. Regular Gasoline Retail Sales by Refiners, Monthly /period -1.00 1973-12-31 2018-12-31 FALSE FALSE
PETA123600001M_Log Calc Log of U.S. Regular Gasoline Retail Sales by Refiners, Monthly log() -1.00 1973-12-31 2018-12-31 TRUE TRUE
PETA123600001M_mva200 Calc U.S. Regular Gasoline Retail Sales by Refiners, Monthly 200 Day MA 200 Day MA -1.00 1973-12-31 2018-12-31 TRUE FALSE
PETA123600001M_mva050 Calc U.S. Regular Gasoline Retail Sales by Refiners, Monthly 50 Day MA 50 Day MA -1.00 1973-12-31 2018-12-31 TRUE TRUE
PETA143B00001M_YoY Calc U.S. Midgrade Gasoline Retail Sales by Refiners, Monthly Year over Year Percent -1.00 1973-12-31 2018-12-31 TRUE TRUE
PETA143B00001M_YoY4 Calc U.S. Midgrade Gasoline Retail Sales by Refiners, Monthly 4 Year over 4 Year Percent -1.00 1973-12-31 2018-12-31 TRUE TRUE
PETA143B00001M_YoY5 Calc U.S. Midgrade Gasoline Retail Sales by Refiners, Monthly 5 Year over 5 Year Percent -1.00 1973-12-31 2018-12-31 TRUE TRUE
PETA143B00001M_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) U.S. Midgrade Gasoline Retail Sales by Refiners, Monthly /period -1.00 1973-12-31 2018-12-31 FALSE FALSE
PETA143B00001M_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) U.S. Midgrade Gasoline Retail Sales by Refiners, Monthly /period -1.00 1973-12-31 2018-12-31 FALSE FALSE
PETA143B00001M_SmoothDer Calc Derivative of Smoothed U.S. Midgrade Gasoline Retail Sales by Refiners, Monthly /period -1.00 1973-12-31 2018-12-31 FALSE FALSE
PETA143B00001M_Log Calc Log of U.S. Midgrade Gasoline Retail Sales by Refiners, Monthly log() -1.00 1973-12-31 2018-12-31 TRUE TRUE
PETA143B00001M_mva200 Calc U.S. Midgrade Gasoline Retail Sales by Refiners, Monthly 200 Day MA 200 Day MA -1.00 1973-12-31 2018-12-31 TRUE TRUE
PETA143B00001M_mva050 Calc U.S. Midgrade Gasoline Retail Sales by Refiners, Monthly 50 Day MA 50 Day MA -1.00 1973-12-31 2018-12-31 TRUE TRUE
PETA133B00001M_YoY Calc U.S. Premium Gasoline Bulk Sales (Volume) by Refiners, Monthly Year over Year Percent -1.00 1973-12-31 2018-12-31 FALSE FALSE
PETA133B00001M_YoY4 Calc U.S. Premium Gasoline Bulk Sales (Volume) by Refiners, Monthly 4 Year over 4 Year Percent -1.00 1973-12-31 2018-12-31 TRUE FALSE
PETA133B00001M_YoY5 Calc U.S. Premium Gasoline Bulk Sales (Volume) by Refiners, Monthly 5 Year over 5 Year Percent -1.00 1973-12-31 2018-12-31 FALSE FALSE
PETA133B00001M_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) U.S. Premium Gasoline Bulk Sales (Volume) by Refiners, Monthly /period -1.00 1973-12-31 2018-12-31 FALSE FALSE
PETA133B00001M_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) U.S. Premium Gasoline Bulk Sales (Volume) by Refiners, Monthly /period -1.00 1973-12-31 2018-12-31 FALSE FALSE
PETA133B00001M_SmoothDer Calc Derivative of Smoothed U.S. Premium Gasoline Bulk Sales (Volume) by Refiners, Monthly /period -1.00 1973-12-31 2018-12-31 FALSE FALSE
PETA133B00001M_Log Calc Log of U.S. Premium Gasoline Bulk Sales (Volume) by Refiners, Monthly log() -1.00 1973-12-31 2018-12-31 TRUE FALSE
PETA133B00001M_mva200 Calc U.S. Premium Gasoline Bulk Sales (Volume) by Refiners, Monthly 200 Day MA 200 Day MA -1.00 1973-12-31 2018-12-31 FALSE FALSE
PETA133B00001M_mva050 Calc U.S. Premium Gasoline Bulk Sales (Volume) by Refiners, Monthly 50 Day MA 50 Day MA -1.00 1973-12-31 2018-12-31 TRUE FALSE
TOTALOGNRPUSM_YoY Calc Crude Oil and Natural Gas Rotary Rigs in Operation, Total, Monthly Year over Year Percent -1.00 1973-12-31 2018-12-31 TRUE TRUE
TOTALOGNRPUSM_YoY4 Calc Crude Oil and Natural Gas Rotary Rigs in Operation, Total, Monthly 4 Year over 4 Year Percent -1.00 1973-12-31 2018-12-31 FALSE FALSE
TOTALOGNRPUSM_YoY5 Calc Crude Oil and Natural Gas Rotary Rigs in Operation, Total, Monthly 5 Year over 5 Year Percent -1.00 1973-12-31 2018-12-31 FALSE FALSE
TOTALOGNRPUSM_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Crude Oil and Natural Gas Rotary Rigs in Operation, Total, Monthly /period -1.00 1973-12-31 2018-12-31 FALSE FALSE
TOTALOGNRPUSM_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Crude Oil and Natural Gas Rotary Rigs in Operation, Total, Monthly /period -1.00 1973-12-31 2018-12-31 FALSE FALSE
TOTALOGNRPUSM_SmoothDer Calc Derivative of Smoothed Crude Oil and Natural Gas Rotary Rigs in Operation, Total, Monthly /period -1.00 1973-12-31 2018-12-31 FALSE FALSE
TOTALOGNRPUSM_Log Calc Log of Crude Oil and Natural Gas Rotary Rigs in Operation, Total, Monthly log() -1.00 1973-12-31 2018-12-31 TRUE TRUE
TOTALOGNRPUSM_mva200 Calc Crude Oil and Natural Gas Rotary Rigs in Operation, Total, Monthly 200 Day MA 200 Day MA -1.00 1973-12-31 2018-12-31 TRUE TRUE
TOTALOGNRPUSM_mva050 Calc Crude Oil and Natural Gas Rotary Rigs in Operation, Total, Monthly 50 Day MA 50 Day MA -1.00 1973-12-31 2018-12-31 TRUE TRUE
TOTALPANRPUSM_YoY Calc Crude Oil Rotary Rigs in Operation, Monthly Year over Year Percent -1.00 1973-12-31 2018-12-31 TRUE TRUE
TOTALPANRPUSM_YoY4 Calc Crude Oil Rotary Rigs in Operation, Monthly 4 Year over 4 Year Percent -1.00 1973-12-31 2018-12-31 FALSE FALSE
TOTALPANRPUSM_YoY5 Calc Crude Oil Rotary Rigs in Operation, Monthly 5 Year over 5 Year Percent -1.00 1973-12-31 2018-12-31 FALSE FALSE
TOTALPANRPUSM_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Crude Oil Rotary Rigs in Operation, Monthly /period -1.00 1973-12-31 2018-12-31 FALSE FALSE
TOTALPANRPUSM_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Crude Oil Rotary Rigs in Operation, Monthly /period -1.00 1973-12-31 2018-12-31 FALSE FALSE
TOTALPANRPUSM_SmoothDer Calc Derivative of Smoothed Crude Oil Rotary Rigs in Operation, Monthly /period -1.00 1973-12-31 2018-12-31 FALSE FALSE
TOTALPANRPUSM_Log Calc Log of Crude Oil Rotary Rigs in Operation, Monthly log() -1.00 1973-12-31 2018-12-31 TRUE TRUE
TOTALPANRPUSM_mva200 Calc Crude Oil Rotary Rigs in Operation, Monthly 200 Day MA 200 Day MA -1.00 1973-12-31 2018-12-31 TRUE TRUE
TOTALPANRPUSM_mva050 Calc Crude Oil Rotary Rigs in Operation, Monthly 50 Day MA 50 Day MA -1.00 1973-12-31 2018-12-31 TRUE TRUE
TOTALNGNRPUSM_YoY Calc Natural Gas Rotary Rigs in Operation, Monthly Year over Year Percent -1.00 1973-12-31 2018-12-31 TRUE TRUE
TOTALNGNRPUSM_YoY4 Calc Natural Gas Rotary Rigs in Operation, Monthly 4 Year over 4 Year Percent -1.00 1973-12-31 2018-12-31 FALSE FALSE
TOTALNGNRPUSM_YoY5 Calc Natural Gas Rotary Rigs in Operation, Monthly 5 Year over 5 Year Percent -1.00 1973-12-31 2018-12-31 FALSE FALSE
TOTALNGNRPUSM_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Natural Gas Rotary Rigs in Operation, Monthly /period -1.00 1973-12-31 2018-12-31 FALSE FALSE
TOTALNGNRPUSM_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Natural Gas Rotary Rigs in Operation, Monthly /period -1.00 1973-12-31 2018-12-31 FALSE FALSE
TOTALNGNRPUSM_SmoothDer Calc Derivative of Smoothed Natural Gas Rotary Rigs in Operation, Monthly /period -1.00 1973-12-31 2018-12-31 FALSE FALSE
TOTALNGNRPUSM_Log Calc Log of Natural Gas Rotary Rigs in Operation, Monthly log() -1.00 1973-12-31 2018-12-31 TRUE TRUE
TOTALNGNRPUSM_mva200 Calc Natural Gas Rotary Rigs in Operation, Monthly 200 Day MA 200 Day MA -1.00 1973-12-31 2018-12-31 TRUE TRUE
TOTALNGNRPUSM_mva050 Calc Natural Gas Rotary Rigs in Operation, Monthly 50 Day MA 50 Day MA -1.00 1973-12-31 2018-12-31 TRUE TRUE
BKRTotal_YoY Calc Total Rig Count Year over Year Percent -1.00 1987-07-17 2020-08-28 TRUE TRUE
BKRTotal_YoY4 Calc Total Rig Count 4 Year over 4 Year Percent -1.00 1987-07-17 2020-08-28 FALSE FALSE
BKRTotal_YoY5 Calc Total Rig Count 5 Year over 5 Year Percent -1.00 1987-07-17 2020-08-28 FALSE FALSE
BKRTotal_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Total Rig Count /period -1.00 1987-07-17 2020-08-28 FALSE FALSE
BKRTotal_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Total Rig Count /period -1.00 1987-07-17 2020-08-28 FALSE FALSE
BKRTotal_SmoothDer Calc Derivative of Smoothed Total Rig Count /period -1.00 1987-07-17 2020-08-28 FALSE FALSE
BKRTotal_Log Calc Log of Total Rig Count log() -1.00 1987-07-17 2020-08-28 TRUE TRUE
BKRTotal_mva200 Calc Total Rig Count 200 Day MA 200 Day MA -1.00 1987-07-17 2020-08-28 TRUE FALSE
BKRTotal_mva050 Calc Total Rig Count 50 Day MA 50 Day MA -1.00 1987-07-17 2020-08-28 TRUE TRUE
BKRGas_YoY Calc Gas Rig Count Year over Year Percent -1.00 2020-08-28 1987-07-17 FALSE FALSE
BKRGas_YoY4 Calc Gas Rig Count 4 Year over 4 Year Percent -1.00 2020-08-28 1987-07-17 FALSE FALSE
BKRGas_YoY5 Calc Gas Rig Count 5 Year over 5 Year Percent -1.00 2020-08-28 1987-07-17 FALSE FALSE
BKRGas_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Gas Rig Count /period -1.00 2020-08-28 1987-07-17 FALSE FALSE
BKRGas_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Gas Rig Count /period -1.00 2020-08-28 1987-07-17 FALSE FALSE
BKRGas_SmoothDer Calc Derivative of Smoothed Gas Rig Count /period -1.00 2020-08-28 1987-07-17 FALSE FALSE
BKRGas_Log Calc Log of Gas Rig Count log() -1.00 2020-08-28 1987-07-17 TRUE TRUE
BKRGas_mva200 Calc Gas Rig Count 200 Day MA 200 Day MA -1.00 2020-08-28 1987-07-17 TRUE FALSE
BKRGas_mva050 Calc Gas Rig Count 50 Day MA 50 Day MA -1.00 2020-08-28 1987-07-17 TRUE TRUE
BKROil_YoY Calc Oil Rig Count Year over Year Percent -1.00 2020-08-28 1987-07-17 TRUE TRUE
BKROil_YoY4 Calc Oil Rig Count 4 Year over 4 Year Percent -1.00 2020-08-28 1987-07-17 FALSE FALSE
BKROil_YoY5 Calc Oil Rig Count 5 Year over 5 Year Percent -1.00 2020-08-28 1987-07-17 FALSE FALSE
BKROil_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Oil Rig Count /period -1.00 2020-08-28 1987-07-17 FALSE FALSE
BKROil_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Oil Rig Count /period -1.00 2020-08-28 1987-07-17 FALSE FALSE
BKROil_SmoothDer Calc Derivative of Smoothed Oil Rig Count /period -1.00 2020-08-28 1987-07-17 FALSE FALSE
BKROil_Log Calc Log of Oil Rig Count log() -1.00 2020-08-28 1987-07-17 TRUE TRUE
BKROil_mva200 Calc Oil Rig Count 200 Day MA 200 Day MA -1.00 2020-08-28 1987-07-17 TRUE FALSE
BKROil_mva050 Calc Oil Rig Count 50 Day MA 50 Day MA -1.00 2020-08-28 1987-07-17 TRUE TRUE
FARMINCOME_YoY Calc Net Farm Income Year over Year Percent -1.00 2012-01-01 2019-01-01 TRUE TRUE
FARMINCOME_YoY4 Calc Net Farm Income 4 Year over 4 Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
FARMINCOME_YoY5 Calc Net Farm Income 5 Year over 5 Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
FARMINCOME_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Net Farm Income /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
FARMINCOME_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Net Farm Income /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
FARMINCOME_SmoothDer Calc Derivative of Smoothed Net Farm Income /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
FARMINCOME_Log Calc Log of Net Farm Income log() -1.00 2012-01-01 2019-01-01 TRUE TRUE
FARMINCOME_mva200 Calc Net Farm Income 200 Day MA 200 Day MA -1.00 2012-01-01 2019-01-01 TRUE TRUE
FARMINCOME_mva050 Calc Net Farm Income 50 Day MA 50 Day MA -1.00 2012-01-01 2019-01-01 TRUE TRUE
OPEARNINGSPERSHARE_YoY Calc Operating Earnings per Share Year over Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
OPEARNINGSPERSHARE_YoY4 Calc Operating Earnings per Share 4 Year over 4 Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
OPEARNINGSPERSHARE_YoY5 Calc Operating Earnings per Share 5 Year over 5 Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
OPEARNINGSPERSHARE_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Operating Earnings per Share /period -1.00 2012-01-01 2019-01-01 TRUE TRUE
OPEARNINGSPERSHARE_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Operating Earnings per Share /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
OPEARNINGSPERSHARE_SmoothDer Calc Derivative of Smoothed Operating Earnings per Share /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
OPEARNINGSPERSHARE_Log Calc Log of Operating Earnings per Share log() -1.00 2012-01-01 2019-01-01 TRUE TRUE
OPEARNINGSPERSHARE_mva200 Calc Operating Earnings per Share 200 Day MA 200 Day MA -1.00 2012-01-01 2019-01-01 TRUE TRUE
OPEARNINGSPERSHARE_mva050 Calc Operating Earnings per Share 50 Day MA 50 Day MA -1.00 2012-01-01 2019-01-01 TRUE TRUE
AREARNINGSPERSHARE_YoY Calc As-Reported Earnings per Share Year over Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
AREARNINGSPERSHARE_YoY4 Calc As-Reported Earnings per Share 4 Year over 4 Year Percent -1.00 2012-01-01 2019-01-01 TRUE FALSE
AREARNINGSPERSHARE_YoY5 Calc As-Reported Earnings per Share 5 Year over 5 Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
AREARNINGSPERSHARE_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) As-Reported Earnings per Share /period -1.00 2012-01-01 2019-01-01 TRUE TRUE
AREARNINGSPERSHARE_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) As-Reported Earnings per Share /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
AREARNINGSPERSHARE_SmoothDer Calc Derivative of Smoothed As-Reported Earnings per Share /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
AREARNINGSPERSHARE_Log Calc Log of As-Reported Earnings per Share log() -1.00 2012-01-01 2019-01-01 TRUE TRUE
AREARNINGSPERSHARE_mva200 Calc As-Reported Earnings per Share 200 Day MA 200 Day MA -1.00 2012-01-01 2019-01-01 FALSE FALSE
AREARNINGSPERSHARE_mva050 Calc As-Reported Earnings per Share 50 Day MA 50 Day MA -1.00 2012-01-01 2019-01-01 TRUE FALSE
CASHDIVIDENDSPERSHR_YoY Calc Cash Dividends per Share Year over Year Percent -1.00 2012-01-01 2019-01-01 TRUE TRUE
CASHDIVIDENDSPERSHR_YoY4 Calc Cash Dividends per Share 4 Year over 4 Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
CASHDIVIDENDSPERSHR_YoY5 Calc Cash Dividends per Share 5 Year over 5 Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
CASHDIVIDENDSPERSHR_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Cash Dividends per Share /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
CASHDIVIDENDSPERSHR_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Cash Dividends per Share /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
CASHDIVIDENDSPERSHR_SmoothDer Calc Derivative of Smoothed Cash Dividends per Share /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
CASHDIVIDENDSPERSHR_Log Calc Log of Cash Dividends per Share log() -1.00 2012-01-01 2019-01-01 TRUE TRUE
CASHDIVIDENDSPERSHR_mva200 Calc Cash Dividends per Share 200 Day MA 200 Day MA -1.00 2012-01-01 2019-01-01 TRUE TRUE
CASHDIVIDENDSPERSHR_mva050 Calc Cash Dividends per Share 50 Day MA 50 Day MA -1.00 2012-01-01 2019-01-01 TRUE TRUE
SALESPERSHR_YoY Calc Sales per Share Year over Year Percent -1.00 2012-01-01 2019-01-01 TRUE TRUE
SALESPERSHR_YoY4 Calc Sales per Share 4 Year over 4 Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
SALESPERSHR_YoY5 Calc Sales per Share 5 Year over 5 Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
SALESPERSHR_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Sales per Share /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
SALESPERSHR_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Sales per Share /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
SALESPERSHR_SmoothDer Calc Derivative of Smoothed Sales per Share /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
SALESPERSHR_Log Calc Log of Sales per Share log() -1.00 2012-01-01 2019-01-01 TRUE TRUE
SALESPERSHR_mva200 Calc Sales per Share 200 Day MA 200 Day MA -1.00 2012-01-01 2019-01-01 TRUE TRUE
SALESPERSHR_mva050 Calc Sales per Share 50 Day MA 50 Day MA -1.00 2012-01-01 2019-01-01 TRUE TRUE
BOOKVALPERSHR_YoY Calc Book value per Share Year over Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
BOOKVALPERSHR_YoY4 Calc Book value per Share 4 Year over 4 Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
BOOKVALPERSHR_YoY5 Calc Book value per Share 5 Year over 5 Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
BOOKVALPERSHR_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Book value per Share /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
BOOKVALPERSHR_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Book value per Share /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
BOOKVALPERSHR_SmoothDer Calc Derivative of Smoothed Book value per Share /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
BOOKVALPERSHR_Log Calc Log of Book value per Share log() -1.00 2012-01-01 2019-01-01 TRUE TRUE
BOOKVALPERSHR_mva200 Calc Book value per Share 200 Day MA 200 Day MA -1.00 2012-01-01 2019-01-01 TRUE TRUE
BOOKVALPERSHR_mva050 Calc Book value per Share 50 Day MA 50 Day MA -1.00 2012-01-01 2019-01-01 TRUE TRUE
CAPEXPERSHR_YoY Calc Cap ex per Share Year over Year Percent -1.00 2012-01-01 2019-01-01 TRUE TRUE
CAPEXPERSHR_YoY4 Calc Cap ex per Share 4 Year over 4 Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
CAPEXPERSHR_YoY5 Calc Cap ex per Share 5 Year over 5 Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
CAPEXPERSHR_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Cap ex per Share /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
CAPEXPERSHR_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Cap ex per Share /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
CAPEXPERSHR_SmoothDer Calc Derivative of Smoothed Cap ex per Share /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
CAPEXPERSHR_Log Calc Log of Cap ex per Share log() -1.00 2012-01-01 2019-01-01 TRUE TRUE
CAPEXPERSHR_mva200 Calc Cap ex per Share 200 Day MA 200 Day MA -1.00 2012-01-01 2019-01-01 TRUE TRUE
CAPEXPERSHR_mva050 Calc Cap ex per Share 50 Day MA 50 Day MA -1.00 2012-01-01 2019-01-01 TRUE TRUE
PRICE_YoY Calc Price Year over Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
PRICE_YoY4 Calc Price 4 Year over 4 Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
PRICE_YoY5 Calc Price 5 Year over 5 Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
PRICE_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Price /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
PRICE_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Price /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
PRICE_SmoothDer Calc Derivative of Smoothed Price /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
PRICE_Log Calc Log of Price log() -1.00 2012-01-01 2019-01-01 TRUE TRUE
PRICE_mva200 Calc Price 200 Day MA 200 Day MA -1.00 2012-01-01 2019-01-01 TRUE TRUE
PRICE_mva050 Calc Price 50 Day MA 50 Day MA -1.00 2012-01-01 2019-01-01 TRUE TRUE
OPEARNINGSTTM_YoY Calc TTM Operating Earnings Year over Year Percent -1.00 2012-01-01 2019-01-01 TRUE TRUE
OPEARNINGSTTM_YoY4 Calc TTM Operating Earnings 4 Year over 4 Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
OPEARNINGSTTM_YoY5 Calc TTM Operating Earnings 5 Year over 5 Year Percent -1.00 2012-01-01 2019-01-01 TRUE TRUE
OPEARNINGSTTM_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) TTM Operating Earnings /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
OPEARNINGSTTM_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) TTM Operating Earnings /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
OPEARNINGSTTM_SmoothDer Calc Derivative of Smoothed TTM Operating Earnings /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
OPEARNINGSTTM_Log Calc Log of TTM Operating Earnings log() -1.00 2012-01-01 2019-01-01 TRUE FALSE
OPEARNINGSTTM_mva200 Calc TTM Operating Earnings 200 Day MA 200 Day MA -1.00 2012-01-01 2019-01-01 FALSE FALSE
OPEARNINGSTTM_mva050 Calc TTM Operating Earnings 50 Day MA 50 Day MA -1.00 2012-01-01 2019-01-01 TRUE FALSE
AREARNINGSTTM_YoY Calc TTM Reported Earnings Year over Year Percent -1.00 2012-01-01 2019-01-01 TRUE TRUE
AREARNINGSTTM_YoY4 Calc TTM Reported Earnings 4 Year over 4 Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
AREARNINGSTTM_YoY5 Calc TTM Reported Earnings 5 Year over 5 Year Percent -1.00 2012-01-01 2019-01-01 FALSE FALSE
AREARNINGSTTM_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) TTM Reported Earnings /period -1.00 2012-01-01 2019-01-01 TRUE FALSE
AREARNINGSTTM_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) TTM Reported Earnings /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
AREARNINGSTTM_SmoothDer Calc Derivative of Smoothed TTM Reported Earnings /period -1.00 2012-01-01 2019-01-01 FALSE FALSE
AREARNINGSTTM_Log Calc Log of TTM Reported Earnings log() -1.00 2012-01-01 2019-01-01 TRUE FALSE
AREARNINGSTTM_mva200 Calc TTM Reported Earnings 200 Day MA 200 Day MA -1.00 2012-01-01 2019-01-01 FALSE FALSE
AREARNINGSTTM_mva050 Calc TTM Reported Earnings 50 Day MA 50 Day MA -1.00 2012-01-01 2019-01-01 TRUE FALSE
FINRAMarginDebt_YoY Calc Margin Debt Year over Year Percent -1.00 1959-01-31 2021-03-31 FALSE FALSE
FINRAMarginDebt_YoY4 Calc Margin Debt 4 Year over 4 Year Percent -1.00 1959-01-31 2021-03-31 FALSE FALSE
FINRAMarginDebt_YoY5 Calc Margin Debt 5 Year over 5 Year Percent -1.00 1959-01-31 2021-03-31 TRUE FALSE
FINRAMarginDebt_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Margin Debt /period -1.00 1959-01-31 2021-03-31 FALSE FALSE
FINRAMarginDebt_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Margin Debt /period -1.00 1959-01-31 2021-03-31 FALSE FALSE
FINRAMarginDebt_SmoothDer Calc Derivative of Smoothed Margin Debt /period -1.00 1959-01-31 2021-03-31 FALSE FALSE
FINRAMarginDebt_Log Calc Log of Margin Debt log() -1.00 1959-01-31 2021-03-31 TRUE TRUE
FINRAMarginDebt_mva200 Calc Margin Debt 200 Day MA 200 Day MA -1.00 1959-01-31 2021-03-31 TRUE TRUE
FINRAMarginDebt_mva050 Calc Margin Debt 50 Day MA 50 Day MA -1.00 1959-01-31 2021-03-31 TRUE TRUE
FINRAFreeCreditMargin_YoY Calc Free Credit Balances in Customers’ Securities Margin Accounts Year over Year Percent -1.00 1959-01-31 1900-01-01 FALSE FALSE
FINRAFreeCreditMargin_YoY4 Calc Free Credit Balances in Customers’ Securities Margin Accounts 4 Year over 4 Year Percent -1.00 1959-01-31 1900-01-01 FALSE FALSE
FINRAFreeCreditMargin_YoY5 Calc Free Credit Balances in Customers’ Securities Margin Accounts 5 Year over 5 Year Percent -1.00 1959-01-31 1900-01-01 FALSE FALSE
FINRAFreeCreditMargin_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Free Credit Balances in Customers’ Securities Margin Accounts /period -1.00 1959-01-31 1900-01-01 FALSE FALSE
FINRAFreeCreditMargin_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Free Credit Balances in Customers’ Securities Margin Accounts /period -1.00 1959-01-31 1900-01-01 FALSE FALSE
FINRAFreeCreditMargin_SmoothDer Calc Derivative of Smoothed Free Credit Balances in Customers’ Securities Margin Accounts /period -1.00 1959-01-31 1900-01-01 TRUE TRUE
FINRAFreeCreditMargin_Log Calc Log of Free Credit Balances in Customers’ Securities Margin Accounts log() -1.00 1959-01-31 1900-01-01 TRUE FALSE
FINRAFreeCreditMargin_mva200 Calc Free Credit Balances in Customers’ Securities Margin Accounts 200 Day MA 200 Day MA -1.00 1959-01-31 1900-01-01 TRUE TRUE
FINRAFreeCreditMargin_mva050 Calc Free Credit Balances in Customers’ Securities Margin Accounts 50 Day MA 50 Day MA -1.00 1959-01-31 1900-01-01 FALSE FALSE
OCCEquityVolume_YoY Calc Equity Options Volume Year over Year Percent -1.00 1973-12-31 2019-09-25 TRUE TRUE
OCCEquityVolume_YoY4 Calc Equity Options Volume 4 Year over 4 Year Percent -1.00 1973-12-31 2019-09-25 FALSE FALSE
OCCEquityVolume_YoY5 Calc Equity Options Volume 5 Year over 5 Year Percent -1.00 1973-12-31 2019-09-25 FALSE FALSE
OCCEquityVolume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Equity Options Volume /period -1.00 1973-12-31 2019-09-25 FALSE FALSE
OCCEquityVolume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Equity Options Volume /period -1.00 1973-12-31 2019-09-25 FALSE FALSE
OCCEquityVolume_SmoothDer Calc Derivative of Smoothed Equity Options Volume /period -1.00 1973-12-31 2019-09-25 FALSE FALSE
OCCEquityVolume_Log Calc Log of Equity Options Volume log() -1.00 1973-12-31 2019-09-25 TRUE TRUE
OCCEquityVolume_mva200 Calc Equity Options Volume 200 Day MA 200 Day MA -1.00 1973-12-31 2019-09-25 TRUE TRUE
OCCEquityVolume_mva050 Calc Equity Options Volume 50 Day MA 50 Day MA -1.00 1973-12-31 2019-09-25 TRUE TRUE
OCCNonEquityVolume_YoY Calc Non-Equity Options Volume Year over Year Percent -1.00 1973-12-31 2019-09-25 TRUE TRUE
OCCNonEquityVolume_YoY4 Calc Non-Equity Options Volume 4 Year over 4 Year Percent -1.00 1973-12-31 2019-09-25 FALSE FALSE
OCCNonEquityVolume_YoY5 Calc Non-Equity Options Volume 5 Year over 5 Year Percent -1.00 1973-12-31 2019-09-25 FALSE FALSE
OCCNonEquityVolume_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Non-Equity Options Volume /period -1.00 1973-12-31 2019-09-25 FALSE FALSE
OCCNonEquityVolume_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Non-Equity Options Volume /period -1.00 1973-12-31 2019-09-25 FALSE FALSE
OCCNonEquityVolume_SmoothDer Calc Derivative of Smoothed Non-Equity Options Volume /period -1.00 1973-12-31 2019-09-25 FALSE FALSE
OCCNonEquityVolume_Log Calc Log of Non-Equity Options Volume log() -1.00 1973-12-31 2019-09-25 TRUE TRUE
OCCNonEquityVolume_mva200 Calc Non-Equity Options Volume 200 Day MA 200 Day MA -1.00 1973-12-31 2019-09-25 TRUE TRUE
OCCNonEquityVolume_mva050 Calc Non-Equity Options Volume 50 Day MA 50 Day MA -1.00 1973-12-31 2019-09-25 TRUE TRUE
RSALESAGG_YoY Calc Real Retail and Food Services Sales (RRSFS and RSALES) Year over Year Percent -1.00 1947-01-01 2021-04-01 FALSE FALSE
RSALESAGG_YoY4 Calc Real Retail and Food Services Sales (RRSFS and RSALES) 4 Year over 4 Year Percent -1.00 1947-01-01 2021-04-01 FALSE FALSE
RSALESAGG_YoY5 Calc Real Retail and Food Services Sales (RRSFS and RSALES) 5 Year over 5 Year Percent -1.00 1947-01-01 2021-04-01 FALSE FALSE
RSALESAGG_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Real Retail and Food Services Sales (RRSFS and RSALES) /period -1.00 1947-01-01 2021-04-01 TRUE TRUE
RSALESAGG_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Real Retail and Food Services Sales (RRSFS and RSALES) /period -1.00 1947-01-01 2021-04-01 FALSE FALSE
RSALESAGG_SmoothDer Calc Derivative of Smoothed Real Retail and Food Services Sales (RRSFS and RSALES) /period -1.00 1947-01-01 2021-04-01 TRUE TRUE
RSALESAGG_Log Calc Log of Real Retail and Food Services Sales (RRSFS and RSALES) log() -1.00 1947-01-01 2021-04-01 TRUE FALSE
RSALESAGG_mva200 Calc Real Retail and Food Services Sales (RRSFS and RSALES) 200 Day MA 200 Day MA -1.00 1947-01-01 2021-04-01 TRUE TRUE
RSALESAGG_mva050 Calc Real Retail and Food Services Sales (RRSFS and RSALES) 50 Day MA 50 Day MA -1.00 1947-01-01 2021-04-01 FALSE FALSE
BUSLOANS.minus.BUSLOANSNSA_YoY Calc Business Loans (Montlhy) SA - NSA Year over Year Percent -1.00 1947-01-01 2021-05-01 TRUE FALSE
BUSLOANS.minus.BUSLOANSNSA_YoY4 Calc Business Loans (Montlhy) SA - NSA 4 Year over 4 Year Percent -1.00 1947-01-01 2021-05-01 TRUE FALSE
BUSLOANS.minus.BUSLOANSNSA_YoY5 Calc Business Loans (Montlhy) SA - NSA 5 Year over 5 Year Percent -1.00 1947-01-01 2021-05-01 TRUE FALSE
BUSLOANS.minus.BUSLOANSNSA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Business Loans (Montlhy) SA - NSA /period -1.00 1947-01-01 2021-05-01 FALSE FALSE
BUSLOANS.minus.BUSLOANSNSA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Business Loans (Montlhy) SA - NSA /period -1.00 1947-01-01 2021-05-01 FALSE FALSE
BUSLOANS.minus.BUSLOANSNSA_SmoothDer Calc Derivative of Smoothed Business Loans (Montlhy) SA - NSA /period -1.00 1947-01-01 2021-05-01 FALSE FALSE
BUSLOANS.minus.BUSLOANSNSA_Log Calc Log of Business Loans (Montlhy) SA - NSA log() -1.00 1947-01-01 2021-05-01 TRUE TRUE
BUSLOANS.minus.BUSLOANSNSA_mva200 Calc Business Loans (Montlhy) SA - NSA 200 Day MA 200 Day MA -1.00 1947-01-01 2021-05-01 FALSE FALSE
BUSLOANS.minus.BUSLOANSNSA_mva050 Calc Business Loans (Montlhy) SA - NSA 50 Day MA 50 Day MA -1.00 1947-01-01 2021-05-01 FALSE FALSE
BUSLOANS.minus.BUSLOANSNSA.by.GDP_YoY Calc Business Loans (Montlhy) SA - NSA divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
BUSLOANS.minus.BUSLOANSNSA.by.GDP_YoY4 Calc Business Loans (Montlhy) SA - NSA divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
BUSLOANS.minus.BUSLOANSNSA.by.GDP_YoY5 Calc Business Loans (Montlhy) SA - NSA divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
BUSLOANS.minus.BUSLOANSNSA.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Business Loans (Montlhy) SA - NSA divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
BUSLOANS.minus.BUSLOANSNSA.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Business Loans (Montlhy) SA - NSA divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE FALSE
BUSLOANS.minus.BUSLOANSNSA.by.GDP_SmoothDer Calc Derivative of Smoothed Business Loans (Montlhy) SA - NSA divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
BUSLOANS.minus.BUSLOANSNSA.by.GDP_Log Calc Log of Business Loans (Montlhy) SA - NSA divided by GDP log() -1.00 1947-01-01 2021-01-01 TRUE TRUE
BUSLOANS.minus.BUSLOANSNSA.by.GDP_mva200 Calc Business Loans (Montlhy) SA - NSA divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
BUSLOANS.minus.BUSLOANSNSA.by.GDP_mva050 Calc Business Loans (Montlhy) SA - NSA divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
BUSLOANS.by.GDP_YoY Calc Business Loans Normalized by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
BUSLOANS.by.GDP_YoY4 Calc Business Loans Normalized by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
BUSLOANS.by.GDP_YoY5 Calc Business Loans Normalized by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
BUSLOANS.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Business Loans Normalized by GDP /period -1.00 1947-01-01 2021-01-01 TRUE FALSE
BUSLOANS.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Business Loans Normalized by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
BUSLOANS.by.GDP_SmoothDer Calc Derivative of Smoothed Business Loans Normalized by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
BUSLOANS.by.GDP_Log Calc Log of Business Loans Normalized by GDP log() -1.00 1947-01-01 2021-01-01 TRUE FALSE
BUSLOANS.by.GDP_mva200 Calc Business Loans Normalized by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
BUSLOANS.by.GDP_mva050 Calc Business Loans Normalized by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
BUSLOANS.INTEREST_YoY Calc Business Loans (Monthly, SA) Adjusted Interest Burdens Year over Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
BUSLOANS.INTEREST_YoY4 Calc Business Loans (Monthly, SA) Adjusted Interest Burdens 4 Year over 4 Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
BUSLOANS.INTEREST_YoY5 Calc Business Loans (Monthly, SA) Adjusted Interest Burdens 5 Year over 5 Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
BUSLOANS.INTEREST_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Business Loans (Monthly, SA) Adjusted Interest Burdens /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
BUSLOANS.INTEREST_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Business Loans (Monthly, SA) Adjusted Interest Burdens /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
BUSLOANS.INTEREST_SmoothDer Calc Derivative of Smoothed Business Loans (Monthly, SA) Adjusted Interest Burdens /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
BUSLOANS.INTEREST_Log Calc Log of Business Loans (Monthly, SA) Adjusted Interest Burdens log() -1.00 1962-01-02 2021-06-10 FALSE FALSE
BUSLOANS.INTEREST_mva200 Calc Business Loans (Monthly, SA) Adjusted Interest Burdens 200 Day MA 200 Day MA -1.00 1962-01-02 2021-06-10 TRUE TRUE
BUSLOANS.INTEREST_mva050 Calc Business Loans (Monthly, SA) Adjusted Interest Burdens 50 Day MA 50 Day MA -1.00 1962-01-02 2021-06-10 FALSE FALSE
BUSLOANS.INTEREST.by.GDP_YoY Calc Business Loans (Monthly, SA) Adjusted Interest Burden Divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
BUSLOANS.INTEREST.by.GDP_YoY4 Calc Business Loans (Monthly, SA) Adjusted Interest Burden Divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
BUSLOANS.INTEREST.by.GDP_YoY5 Calc Business Loans (Monthly, SA) Adjusted Interest Burden Divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
BUSLOANS.INTEREST.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Business Loans (Monthly, SA) Adjusted Interest Burden Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
BUSLOANS.INTEREST.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Business Loans (Monthly, SA) Adjusted Interest Burden Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
BUSLOANS.INTEREST.by.GDP_SmoothDer Calc Derivative of Smoothed Business Loans (Monthly, SA) Adjusted Interest Burden Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
BUSLOANS.INTEREST.by.GDP_Log Calc Log of Business Loans (Monthly, SA) Adjusted Interest Burden Divided by GDP log() -1.00 1947-01-01 2021-01-01 FALSE FALSE
BUSLOANS.INTEREST.by.GDP_mva200 Calc Business Loans (Monthly, SA) Adjusted Interest Burden Divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
BUSLOANS.INTEREST.by.GDP_mva050 Calc Business Loans (Monthly, SA) Adjusted Interest Burden Divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
BUSLOANSNSA.by.GDP_YoY Calc Business Loans Normalized by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
BUSLOANSNSA.by.GDP_YoY4 Calc Business Loans Normalized by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
BUSLOANSNSA.by.GDP_YoY5 Calc Business Loans Normalized by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
BUSLOANSNSA.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Business Loans Normalized by GDP /period -1.00 1947-01-01 2021-01-01 TRUE FALSE
BUSLOANSNSA.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Business Loans Normalized by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
BUSLOANSNSA.by.GDP_SmoothDer Calc Derivative of Smoothed Business Loans Normalized by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
BUSLOANSNSA.by.GDP_Log Calc Log of Business Loans Normalized by GDP log() -1.00 1947-01-01 2021-01-01 TRUE FALSE
BUSLOANSNSA.by.GDP_mva200 Calc Business Loans Normalized by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
BUSLOANSNSA.by.GDP_mva050 Calc Business Loans Normalized by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
TOTCI.by.GDP_YoY Calc Business Loans (Weekly, SA) Normalized by GDP Year over Year Percent -1.00 1973-01-03 2021-01-01 TRUE FALSE
TOTCI.by.GDP_YoY4 Calc Business Loans (Weekly, SA) Normalized by GDP 4 Year over 4 Year Percent -1.00 1973-01-03 2021-01-01 FALSE FALSE
TOTCI.by.GDP_YoY5 Calc Business Loans (Weekly, SA) Normalized by GDP 5 Year over 5 Year Percent -1.00 1973-01-03 2021-01-01 FALSE FALSE
TOTCI.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Business Loans (Weekly, SA) Normalized by GDP /period -1.00 1973-01-03 2021-01-01 TRUE FALSE
TOTCI.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Business Loans (Weekly, SA) Normalized by GDP /period -1.00 1973-01-03 2021-01-01 FALSE FALSE
TOTCI.by.GDP_SmoothDer Calc Derivative of Smoothed Business Loans (Weekly, SA) Normalized by GDP /period -1.00 1973-01-03 2021-01-01 TRUE TRUE
TOTCI.by.GDP_Log Calc Log of Business Loans (Weekly, SA) Normalized by GDP log() -1.00 1973-01-03 2021-01-01 FALSE FALSE
TOTCI.by.GDP_mva200 Calc Business Loans (Weekly, SA) Normalized by GDP 200 Day MA 200 Day MA -1.00 1973-01-03 2021-01-01 FALSE FALSE
TOTCI.by.GDP_mva050 Calc Business Loans (Weekly, SA) Normalized by GDP 50 Day MA 50 Day MA -1.00 1973-01-03 2021-01-01 FALSE FALSE
TOTCINSA.by.GDP_YoY Calc Business Loans (Weekly, NSA) Normalized by GDP Year over Year Percent -1.00 1973-01-03 2021-01-01 TRUE FALSE
TOTCINSA.by.GDP_YoY4 Calc Business Loans (Weekly, NSA) Normalized by GDP 4 Year over 4 Year Percent -1.00 1973-01-03 2021-01-01 FALSE FALSE
TOTCINSA.by.GDP_YoY5 Calc Business Loans (Weekly, NSA) Normalized by GDP 5 Year over 5 Year Percent -1.00 1973-01-03 2021-01-01 FALSE FALSE
TOTCINSA.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Business Loans (Weekly, NSA) Normalized by GDP /period -1.00 1973-01-03 2021-01-01 TRUE FALSE
TOTCINSA.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Business Loans (Weekly, NSA) Normalized by GDP /period -1.00 1973-01-03 2021-01-01 FALSE FALSE
TOTCINSA.by.GDP_SmoothDer Calc Derivative of Smoothed Business Loans (Weekly, NSA) Normalized by GDP /period -1.00 1973-01-03 2021-01-01 TRUE TRUE
TOTCINSA.by.GDP_Log Calc Log of Business Loans (Weekly, NSA) Normalized by GDP log() -1.00 1973-01-03 2021-01-01 FALSE FALSE
TOTCINSA.by.GDP_mva200 Calc Business Loans (Weekly, NSA) Normalized by GDP 200 Day MA 200 Day MA -1.00 1973-01-03 2021-01-01 FALSE FALSE
TOTCINSA.by.GDP_mva050 Calc Business Loans (Weekly, NSA) Normalized by GDP 50 Day MA 50 Day MA -1.00 1973-01-03 2021-01-01 FALSE FALSE
TOTCINSA.INTEREST_YoY Calc Business Loans (Weekly, NSA) Adjusted Interest Burdens Year over Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
TOTCINSA.INTEREST_YoY4 Calc Business Loans (Weekly, NSA) Adjusted Interest Burdens 4 Year over 4 Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
TOTCINSA.INTEREST_YoY5 Calc Business Loans (Weekly, NSA) Adjusted Interest Burdens 5 Year over 5 Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
TOTCINSA.INTEREST_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Business Loans (Weekly, NSA) Adjusted Interest Burdens /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
TOTCINSA.INTEREST_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Business Loans (Weekly, NSA) Adjusted Interest Burdens /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
TOTCINSA.INTEREST_SmoothDer Calc Derivative of Smoothed Business Loans (Weekly, NSA) Adjusted Interest Burdens /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
TOTCINSA.INTEREST_Log Calc Log of Business Loans (Weekly, NSA) Adjusted Interest Burdens log() -1.00 1962-01-02 2021-06-10 FALSE FALSE
TOTCINSA.INTEREST_mva200 Calc Business Loans (Weekly, NSA) Adjusted Interest Burdens 200 Day MA 200 Day MA -1.00 1962-01-02 2021-06-10 TRUE TRUE
TOTCINSA.INTEREST_mva050 Calc Business Loans (Weekly, NSA) Adjusted Interest Burdens 50 Day MA 50 Day MA -1.00 1962-01-02 2021-06-10 FALSE FALSE
TOTCINSA.INTEREST.by.GDP_YoY Calc Business Loans (weekly, NSA) Adjusted Interest Burden Divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
TOTCINSA.INTEREST.by.GDP_YoY4 Calc Business Loans (weekly, NSA) Adjusted Interest Burden Divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
TOTCINSA.INTEREST.by.GDP_YoY5 Calc Business Loans (weekly, NSA) Adjusted Interest Burden Divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
TOTCINSA.INTEREST.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Business Loans (weekly, NSA) Adjusted Interest Burden Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
TOTCINSA.INTEREST.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Business Loans (weekly, NSA) Adjusted Interest Burden Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
TOTCINSA.INTEREST.by.GDP_SmoothDer Calc Derivative of Smoothed Business Loans (weekly, NSA) Adjusted Interest Burden Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
TOTCINSA.INTEREST.by.GDP_Log Calc Log of Business Loans (weekly, NSA) Adjusted Interest Burden Divided by GDP log() -1.00 1947-01-01 2021-01-01 FALSE FALSE
TOTCINSA.INTEREST.by.GDP_mva200 Calc Business Loans (weekly, NSA) Adjusted Interest Burden Divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
TOTCINSA.INTEREST.by.GDP_mva050 Calc Business Loans (weekly, NSA) Adjusted Interest Burden Divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
W875RX1.by.GDP_YoY Calc Real Personal Income Normalized by GDP Year over Year Percent -1.00 1959-01-01 2021-01-01 TRUE TRUE
W875RX1.by.GDP_YoY4 Calc Real Personal Income Normalized by GDP 4 Year over 4 Year Percent -1.00 1959-01-01 2021-01-01 TRUE TRUE
W875RX1.by.GDP_YoY5 Calc Real Personal Income Normalized by GDP 5 Year over 5 Year Percent -1.00 1959-01-01 2021-01-01 FALSE FALSE
W875RX1.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Real Personal Income Normalized by GDP /period -1.00 1959-01-01 2021-01-01 TRUE TRUE
W875RX1.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Real Personal Income Normalized by GDP /period -1.00 1959-01-01 2021-01-01 FALSE FALSE
W875RX1.by.GDP_SmoothDer Calc Derivative of Smoothed Real Personal Income Normalized by GDP /period -1.00 1959-01-01 2021-01-01 FALSE FALSE
W875RX1.by.GDP_Log Calc Log of Real Personal Income Normalized by GDP log() -1.00 1959-01-01 2021-01-01 TRUE TRUE
W875RX1.by.GDP_mva200 Calc Real Personal Income Normalized by GDP 200 Day MA 200 Day MA -1.00 1959-01-01 2021-01-01 TRUE FALSE
W875RX1.by.GDP_mva050 Calc Real Personal Income Normalized by GDP 50 Day MA 50 Day MA -1.00 1959-01-01 2021-01-01 TRUE TRUE
A065RC1A027NBEA.by.GDP_YoY Calc Personal Income (NSA) Normalized by GDP Year over Year Percent -1.00 1947-01-01 2020-01-01 TRUE FALSE
A065RC1A027NBEA.by.GDP_YoY4 Calc Personal Income (NSA) Normalized by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2020-01-01 FALSE FALSE
A065RC1A027NBEA.by.GDP_YoY5 Calc Personal Income (NSA) Normalized by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2020-01-01 FALSE FALSE
A065RC1A027NBEA.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Personal Income (NSA) Normalized by GDP /period -1.00 1947-01-01 2020-01-01 TRUE FALSE
A065RC1A027NBEA.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Personal Income (NSA) Normalized by GDP /period -1.00 1947-01-01 2020-01-01 FALSE FALSE
A065RC1A027NBEA.by.GDP_SmoothDer Calc Derivative of Smoothed Personal Income (NSA) Normalized by GDP /period -1.00 1947-01-01 2020-01-01 TRUE TRUE
A065RC1A027NBEA.by.GDP_Log Calc Log of Personal Income (NSA) Normalized by GDP log() -1.00 1947-01-01 2020-01-01 TRUE FALSE
A065RC1A027NBEA.by.GDP_mva200 Calc Personal Income (NSA) Normalized by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2020-01-01 FALSE FALSE
A065RC1A027NBEA.by.GDP_mva050 Calc Personal Income (NSA) Normalized by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2020-01-01 TRUE FALSE
PI.by.GDP_YoY Calc Personal Income (SA) Normalized by GDP Year over Year Percent -1.00 1959-01-01 2021-01-01 TRUE FALSE
PI.by.GDP_YoY4 Calc Personal Income (SA) Normalized by GDP 4 Year over 4 Year Percent -1.00 1959-01-01 2021-01-01 TRUE FALSE
PI.by.GDP_YoY5 Calc Personal Income (SA) Normalized by GDP 5 Year over 5 Year Percent -1.00 1959-01-01 2021-01-01 FALSE FALSE
PI.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Personal Income (SA) Normalized by GDP /period -1.00 1959-01-01 2021-01-01 FALSE FALSE
PI.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Personal Income (SA) Normalized by GDP /period -1.00 1959-01-01 2021-01-01 FALSE FALSE
PI.by.GDP_SmoothDer Calc Derivative of Smoothed Personal Income (SA) Normalized by GDP /period -1.00 1959-01-01 2021-01-01 TRUE TRUE
PI.by.GDP_Log Calc Log of Personal Income (SA) Normalized by GDP log() -1.00 1959-01-01 2021-01-01 TRUE FALSE
PI.by.GDP_mva200 Calc Personal Income (SA) Normalized by GDP 200 Day MA 200 Day MA -1.00 1959-01-01 2021-01-01 TRUE TRUE
PI.by.GDP_mva050 Calc Personal Income (SA) Normalized by GDP 50 Day MA 50 Day MA -1.00 1959-01-01 2021-01-01 FALSE FALSE
A053RC1Q027SBEA.by.GDP_YoY Calc National income: Corporate profits before tax (without IVA and CCAdj) Normalized by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
A053RC1Q027SBEA.by.GDP_YoY4 Calc National income: Corporate profits before tax (without IVA and CCAdj) Normalized by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
A053RC1Q027SBEA.by.GDP_YoY5 Calc National income: Corporate profits before tax (without IVA and CCAdj) Normalized by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
A053RC1Q027SBEA.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) National income: Corporate profits before tax (without IVA and CCAdj) Normalized by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
A053RC1Q027SBEA.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) National income: Corporate profits before tax (without IVA and CCAdj) Normalized by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
A053RC1Q027SBEA.by.GDP_SmoothDer Calc Derivative of Smoothed National income: Corporate profits before tax (without IVA and CCAdj) Normalized by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
A053RC1Q027SBEA.by.GDP_Log Calc Log of National income: Corporate profits before tax (without IVA and CCAdj) Normalized by GDP log() -1.00 1947-01-01 2021-01-01 TRUE TRUE
A053RC1Q027SBEA.by.GDP_mva200 Calc National income: Corporate profits before tax (without IVA and CCAdj) Normalized by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
A053RC1Q027SBEA.by.GDP_mva050 Calc National income: Corporate profits before tax (without IVA and CCAdj) Normalized by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
CPROFIT.by.GDP_YoY Calc National income: Corporate profits before tax (with IVA and CCAdj) Normalized by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
CPROFIT.by.GDP_YoY4 Calc National income: Corporate profits before tax (with IVA and CCAdj) Normalized by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
CPROFIT.by.GDP_YoY5 Calc National income: Corporate profits before tax (with IVA and CCAdj) Normalized by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
CPROFIT.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) National income: Corporate profits before tax (with IVA and CCAdj) Normalized by GDP /period -1.00 1947-01-01 2021-01-01 TRUE FALSE
CPROFIT.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) National income: Corporate profits before tax (with IVA and CCAdj) Normalized by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
CPROFIT.by.GDP_SmoothDer Calc Derivative of Smoothed National income: Corporate profits before tax (with IVA and CCAdj) Normalized by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
CPROFIT.by.GDP_Log Calc Log of National income: Corporate profits before tax (with IVA and CCAdj) Normalized by GDP log() -1.00 1947-01-01 2021-01-01 TRUE FALSE
CPROFIT.by.GDP_mva200 Calc National income: Corporate profits before tax (with IVA and CCAdj) Normalized by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
CPROFIT.by.GDP_mva050 Calc National income: Corporate profits before tax (with IVA and CCAdj) Normalized by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE FALSE
CONSUMERNSA.by.GDP_YoY Calc Consumer Loans Not Seasonally Adjusted divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE TRUE
CONSUMERNSA.by.GDP_YoY4 Calc Consumer Loans Not Seasonally Adjusted divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
CONSUMERNSA.by.GDP_YoY5 Calc Consumer Loans Not Seasonally Adjusted divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
CONSUMERNSA.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Consumer Loans Not Seasonally Adjusted divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
CONSUMERNSA.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Consumer Loans Not Seasonally Adjusted divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
CONSUMERNSA.by.GDP_SmoothDer Calc Derivative of Smoothed Consumer Loans Not Seasonally Adjusted divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
CONSUMERNSA.by.GDP_Log Calc Log of Consumer Loans Not Seasonally Adjusted divided by GDP log() -1.00 1947-01-01 2021-01-01 TRUE FALSE
CONSUMERNSA.by.GDP_mva200 Calc Consumer Loans Not Seasonally Adjusted divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
CONSUMERNSA.by.GDP_mva050 Calc Consumer Loans Not Seasonally Adjusted divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE FALSE
RREACBM027NBOG.by.GDP_YoY Calc Residental Real Estate Loans (Monthly, NSA) divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
RREACBM027NBOG.by.GDP_YoY4 Calc Residental Real Estate Loans (Monthly, NSA) divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBM027NBOG.by.GDP_YoY5 Calc Residental Real Estate Loans (Monthly, NSA) divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBM027NBOG.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Residental Real Estate Loans (Monthly, NSA) divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE FALSE
RREACBM027NBOG.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Residental Real Estate Loans (Monthly, NSA) divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBM027NBOG.by.GDP_SmoothDer Calc Derivative of Smoothed Residental Real Estate Loans (Monthly, NSA) divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
RREACBM027NBOG.by.GDP_Log Calc Log of Residental Real Estate Loans (Monthly, NSA) divided by GDP log() -1.00 1947-01-01 2021-01-01 TRUE FALSE
RREACBM027NBOG.by.GDP_mva200 Calc Residental Real Estate Loans (Monthly, NSA) divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBM027NBOG.by.GDP_mva050 Calc Residental Real Estate Loans (Monthly, NSA) divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBM027SBOG.by.GDP_YoY Calc Residental Real Estate Loans (Monthly, SA) divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
RREACBM027SBOG.by.GDP_YoY4 Calc Residental Real Estate Loans (Monthly, SA) divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
RREACBM027SBOG.by.GDP_YoY5 Calc Residental Real Estate Loans (Monthly, SA) divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBM027SBOG.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Residental Real Estate Loans (Monthly, SA) divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE FALSE
RREACBM027SBOG.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Residental Real Estate Loans (Monthly, SA) divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBM027SBOG.by.GDP_SmoothDer Calc Derivative of Smoothed Residental Real Estate Loans (Monthly, SA) divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
RREACBM027SBOG.by.GDP_Log Calc Log of Residental Real Estate Loans (Monthly, SA) divided by GDP log() -1.00 1947-01-01 2021-01-01 TRUE FALSE
RREACBM027SBOG.by.GDP_mva200 Calc Residental Real Estate Loans (Monthly, SA) divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBM027SBOG.by.GDP_mva050 Calc Residental Real Estate Loans (Monthly, SA) divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBW027SBOG.by.GDP_YoY Calc Residental Real Estate Loans (Weekly, SA) divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
RREACBW027SBOG.by.GDP_YoY4 Calc Residental Real Estate Loans (Weekly, SA) divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBW027SBOG.by.GDP_YoY5 Calc Residental Real Estate Loans (Weekly, SA) divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBW027SBOG.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Residental Real Estate Loans (Weekly, SA) divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBW027SBOG.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Residental Real Estate Loans (Weekly, SA) divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBW027SBOG.by.GDP_SmoothDer Calc Derivative of Smoothed Residental Real Estate Loans (Weekly, SA) divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
RREACBW027SBOG.by.GDP_Log Calc Log of Residental Real Estate Loans (Weekly, SA) divided by GDP log() -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBW027SBOG.by.GDP_mva200 Calc Residental Real Estate Loans (Weekly, SA) divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBW027SBOG.by.GDP_mva050 Calc Residental Real Estate Loans (Weekly, SA) divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBW027NBOG.by.GDP_YoY Calc Residental Real Estate Loans (Weekly, NSA) divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
RREACBW027NBOG.by.GDP_YoY4 Calc Residental Real Estate Loans (Weekly, NSA) divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBW027NBOG.by.GDP_YoY5 Calc Residental Real Estate Loans (Weekly, NSA) divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBW027NBOG.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Residental Real Estate Loans (Weekly, NSA) divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE FALSE
RREACBW027NBOG.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Residental Real Estate Loans (Weekly, NSA) divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBW027NBOG.by.GDP_SmoothDer Calc Derivative of Smoothed Residental Real Estate Loans (Weekly, NSA) divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
RREACBW027NBOG.by.GDP_Log Calc Log of Residental Real Estate Loans (Weekly, NSA) divided by GDP log() -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBW027NBOG.by.GDP_mva200 Calc Residental Real Estate Loans (Weekly, NSA) divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
RREACBW027NBOG.by.GDP_mva050 Calc Residental Real Estate Loans (Weekly, NSA) divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
UMDMNO.by.GDP_YoY Calc Durable Goods (Monthly, NSA) divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
UMDMNO.by.GDP_YoY4 Calc Durable Goods (Monthly, NSA) divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
UMDMNO.by.GDP_YoY5 Calc Durable Goods (Monthly, NSA) divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 TRUE TRUE
UMDMNO.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Durable Goods (Monthly, NSA) divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
UMDMNO.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Durable Goods (Monthly, NSA) divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
UMDMNO.by.GDP_SmoothDer Calc Derivative of Smoothed Durable Goods (Monthly, NSA) divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
UMDMNO.by.GDP_Log Calc Log of Durable Goods (Monthly, NSA) divided by GDP log() -1.00 1947-01-01 2021-01-01 TRUE FALSE
UMDMNO.by.GDP_mva200 Calc Durable Goods (Monthly, NSA) divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
UMDMNO.by.GDP_mva050 Calc Durable Goods (Monthly, NSA) divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
DGORDER.by.GDP_YoY Calc Durable Goods (Monthly, NSA) divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
DGORDER.by.GDP_YoY4 Calc Durable Goods (Monthly, NSA) divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
DGORDER.by.GDP_YoY5 Calc Durable Goods (Monthly, NSA) divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
DGORDER.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Durable Goods (Monthly, NSA) divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
DGORDER.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Durable Goods (Monthly, NSA) divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
DGORDER.by.GDP_SmoothDer Calc Derivative of Smoothed Durable Goods (Monthly, NSA) divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
DGORDER.by.GDP_Log Calc Log of Durable Goods (Monthly, NSA) divided by GDP log() -1.00 1947-01-01 2021-01-01 TRUE FALSE
DGORDER.by.GDP_mva200 Calc Durable Goods (Monthly, NSA) divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
DGORDER.by.GDP_mva050 Calc Durable Goods (Monthly, NSA) divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
ASHMA.by.GDP_YoY Calc Home Mortgages (Quarterly, NSA) divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASHMA.by.GDP_YoY4 Calc Home Mortgages (Quarterly, NSA) divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 TRUE TRUE
ASHMA.by.GDP_YoY5 Calc Home Mortgages (Quarterly, NSA) divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 TRUE TRUE
ASHMA.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Home Mortgages (Quarterly, NSA) divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASHMA.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Home Mortgages (Quarterly, NSA) divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
ASHMA.by.GDP_SmoothDer Calc Derivative of Smoothed Home Mortgages (Quarterly, NSA) divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
ASHMA.by.GDP_Log Calc Log of Home Mortgages (Quarterly, NSA) divided by GDP log() -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASHMA.by.GDP_mva200 Calc Home Mortgages (Quarterly, NSA) divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
ASHMA.by.GDP_mva050 Calc Home Mortgages (Quarterly, NSA) divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASHMA.INTEREST_YoY Calc Home Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens Year over Year Percent -1.00 1971-04-02 2021-06-10 FALSE FALSE
ASHMA.INTEREST_YoY4 Calc Home Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens 4 Year over 4 Year Percent -1.00 1971-04-02 2021-06-10 FALSE FALSE
ASHMA.INTEREST_YoY5 Calc Home Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens 5 Year over 5 Year Percent -1.00 1971-04-02 2021-06-10 FALSE FALSE
ASHMA.INTEREST_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Home Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens /period -1.00 1971-04-02 2021-06-10 TRUE TRUE
ASHMA.INTEREST_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Home Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens /period -1.00 1971-04-02 2021-06-10 FALSE FALSE
ASHMA.INTEREST_SmoothDer Calc Derivative of Smoothed Home Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens /period -1.00 1971-04-02 2021-06-10 TRUE TRUE
ASHMA.INTEREST_Log Calc Log of Home Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens log() -1.00 1971-04-02 2021-06-10 FALSE FALSE
ASHMA.INTEREST_mva200 Calc Home Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens 200 Day MA 200 Day MA -1.00 1971-04-02 2021-06-10 TRUE TRUE
ASHMA.INTEREST_mva050 Calc Home Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens 50 Day MA 50 Day MA -1.00 1971-04-02 2021-06-10 FALSE FALSE
ASHMA.INTEREST.by.GDP_YoY Calc Year over Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASHMA.INTEREST.by.GDP_YoY4 Calc 4 Year over 4 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASHMA.INTEREST.by.GDP_YoY5 Calc 5 Year over 5 Year Percent -1.00 1945-10-01 2021-01-01 TRUE FALSE
ASHMA.INTEREST.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASHMA.INTEREST.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASHMA.INTEREST.by.GDP_SmoothDer Calc Derivative of Smoothed /period -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASHMA.INTEREST.by.GDP_Log Calc Log of log() -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASHMA.INTEREST.by.GDP_mva200 Calc 200 Day MA 200 Day MA -1.00 1945-10-01 2021-01-01 TRUE FALSE
ASHMA.INTEREST.by.GDP_mva050 Calc 50 Day MA 50 Day MA -1.00 1945-10-01 2021-01-01 FALSE FALSE
CONSUMERNSA.INTEREST_YoY Calc Consumer Loans (Not Seasonally Adjusted) Interest Burdens Year over Year Percent -1.00 1962-01-02 2021-06-10 TRUE TRUE
CONSUMERNSA.INTEREST_YoY4 Calc Consumer Loans (Not Seasonally Adjusted) Interest Burdens 4 Year over 4 Year Percent -1.00 1962-01-02 2021-06-10 TRUE FALSE
CONSUMERNSA.INTEREST_YoY5 Calc Consumer Loans (Not Seasonally Adjusted) Interest Burdens 5 Year over 5 Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
CONSUMERNSA.INTEREST_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Consumer Loans (Not Seasonally Adjusted) Interest Burdens /period -1.00 1962-01-02 2021-06-10 TRUE FALSE
CONSUMERNSA.INTEREST_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Consumer Loans (Not Seasonally Adjusted) Interest Burdens /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
CONSUMERNSA.INTEREST_SmoothDer Calc Derivative of Smoothed Consumer Loans (Not Seasonally Adjusted) Interest Burdens /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
CONSUMERNSA.INTEREST_Log Calc Log of Consumer Loans (Not Seasonally Adjusted) Interest Burdens log() -1.00 1962-01-02 2021-06-10 TRUE FALSE
CONSUMERNSA.INTEREST_mva200 Calc Consumer Loans (Not Seasonally Adjusted) Interest Burdens 200 Day MA 200 Day MA -1.00 1962-01-02 2021-06-10 FALSE FALSE
CONSUMERNSA.INTEREST_mva050 Calc Consumer Loans (Not Seasonally Adjusted) Interest Burdens 50 Day MA 50 Day MA -1.00 1962-01-02 2021-06-10 TRUE FALSE
CONSUMERNSA.INTEREST.by.GDP_YoY Calc Consumer Loans (Not Seasonally Adjusted) Interest Burden Divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE TRUE
CONSUMERNSA.INTEREST.by.GDP_YoY4 Calc Consumer Loans (Not Seasonally Adjusted) Interest Burden Divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
CONSUMERNSA.INTEREST.by.GDP_YoY5 Calc Consumer Loans (Not Seasonally Adjusted) Interest Burden Divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
CONSUMERNSA.INTEREST.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Consumer Loans (Not Seasonally Adjusted) Interest Burden Divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE FALSE
CONSUMERNSA.INTEREST.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Consumer Loans (Not Seasonally Adjusted) Interest Burden Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
CONSUMERNSA.INTEREST.by.GDP_SmoothDer Calc Derivative of Smoothed Consumer Loans (Not Seasonally Adjusted) Interest Burden Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
CONSUMERNSA.INTEREST.by.GDP_Log Calc Log of Consumer Loans (Not Seasonally Adjusted) Interest Burden Divided by GDP log() -1.00 1947-01-01 2021-01-01 TRUE FALSE
CONSUMERNSA.INTEREST.by.GDP_mva200 Calc Consumer Loans (Not Seasonally Adjusted) Interest Burden Divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
CONSUMERNSA.INTEREST.by.GDP_mva050 Calc Consumer Loans (Not Seasonally Adjusted) Interest Burden Divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE FALSE
TOTLNNSA_YoY Calc Total Loans Not Seasonally Adjusted (BUSLOANS+REALLNSA+CONSUMERNSA) Year over Year Percent -1.00 1947-01-01 2021-05-01 TRUE FALSE
TOTLNNSA_YoY4 Calc Total Loans Not Seasonally Adjusted (BUSLOANS+REALLNSA+CONSUMERNSA) 4 Year over 4 Year Percent -1.00 1947-01-01 2021-05-01 FALSE FALSE
TOTLNNSA_YoY5 Calc Total Loans Not Seasonally Adjusted (BUSLOANS+REALLNSA+CONSUMERNSA) 5 Year over 5 Year Percent -1.00 1947-01-01 2021-05-01 FALSE FALSE
TOTLNNSA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Total Loans Not Seasonally Adjusted (BUSLOANS+REALLNSA+CONSUMERNSA) /period -1.00 1947-01-01 2021-05-01 TRUE FALSE
TOTLNNSA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Total Loans Not Seasonally Adjusted (BUSLOANS+REALLNSA+CONSUMERNSA) /period -1.00 1947-01-01 2021-05-01 FALSE FALSE
TOTLNNSA_SmoothDer Calc Derivative of Smoothed Total Loans Not Seasonally Adjusted (BUSLOANS+REALLNSA+CONSUMERNSA) /period -1.00 1947-01-01 2021-05-01 TRUE TRUE
TOTLNNSA_Log Calc Log of Total Loans Not Seasonally Adjusted (BUSLOANS+REALLNSA+CONSUMERNSA) log() -1.00 1947-01-01 2021-05-01 TRUE FALSE
TOTLNNSA_mva200 Calc Total Loans Not Seasonally Adjusted (BUSLOANS+REALLNSA+CONSUMERNSA) 200 Day MA 200 Day MA -1.00 1947-01-01 2021-05-01 FALSE FALSE
TOTLNNSA_mva050 Calc Total Loans Not Seasonally Adjusted (BUSLOANS+REALLNSA+CONSUMERNSA) 50 Day MA 50 Day MA -1.00 1947-01-01 2021-05-01 FALSE FALSE
TOTLNNSA.by.GDP_YoY Calc Total Loans Not Seasonally Adjusted divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
TOTLNNSA.by.GDP_YoY4 Calc Total Loans Not Seasonally Adjusted divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
TOTLNNSA.by.GDP_YoY5 Calc Total Loans Not Seasonally Adjusted divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
TOTLNNSA.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Total Loans Not Seasonally Adjusted divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE FALSE
TOTLNNSA.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Total Loans Not Seasonally Adjusted divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
TOTLNNSA.by.GDP_SmoothDer Calc Derivative of Smoothed Total Loans Not Seasonally Adjusted divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
TOTLNNSA.by.GDP_Log Calc Log of Total Loans Not Seasonally Adjusted divided by GDP log() -1.00 1947-01-01 2021-01-01 TRUE FALSE
TOTLNNSA.by.GDP_mva200 Calc Total Loans Not Seasonally Adjusted divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
TOTLNNSA.by.GDP_mva050 Calc Total Loans Not Seasonally Adjusted divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
TOTLNNSA.INTEREST_YoY Calc Total Loans Not Seasonally Adjusted Interest Burdens Year over Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
TOTLNNSA.INTEREST_YoY4 Calc Total Loans Not Seasonally Adjusted Interest Burdens 4 Year over 4 Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
TOTLNNSA.INTEREST_YoY5 Calc Total Loans Not Seasonally Adjusted Interest Burdens 5 Year over 5 Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
TOTLNNSA.INTEREST_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Total Loans Not Seasonally Adjusted Interest Burdens /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
TOTLNNSA.INTEREST_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Total Loans Not Seasonally Adjusted Interest Burdens /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
TOTLNNSA.INTEREST_SmoothDer Calc Derivative of Smoothed Total Loans Not Seasonally Adjusted Interest Burdens /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
TOTLNNSA.INTEREST_Log Calc Log of Total Loans Not Seasonally Adjusted Interest Burdens log() -1.00 1962-01-02 2021-06-10 FALSE FALSE
TOTLNNSA.INTEREST_mva200 Calc Total Loans Not Seasonally Adjusted Interest Burdens 200 Day MA 200 Day MA -1.00 1962-01-02 2021-06-10 TRUE TRUE
TOTLNNSA.INTEREST_mva050 Calc Total Loans Not Seasonally Adjusted Interest Burdens 50 Day MA 50 Day MA -1.00 1962-01-02 2021-06-10 FALSE FALSE
TOTLNNSA.INTEREST.by.GDP_YoY Calc Total Loans Not Seasonally Adjusted Interest Burden Divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
TOTLNNSA.INTEREST.by.GDP_YoY4 Calc Total Loans Not Seasonally Adjusted Interest Burden Divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
TOTLNNSA.INTEREST.by.GDP_YoY5 Calc Total Loans Not Seasonally Adjusted Interest Burden Divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
TOTLNNSA.INTEREST.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Total Loans Not Seasonally Adjusted Interest Burden Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
TOTLNNSA.INTEREST.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Total Loans Not Seasonally Adjusted Interest Burden Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
TOTLNNSA.INTEREST.by.GDP_SmoothDer Calc Derivative of Smoothed Total Loans Not Seasonally Adjusted Interest Burden Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
TOTLNNSA.INTEREST.by.GDP_Log Calc Log of Total Loans Not Seasonally Adjusted Interest Burden Divided by GDP log() -1.00 1947-01-01 2021-01-01 FALSE FALSE
TOTLNNSA.INTEREST.by.GDP_mva200 Calc Total Loans Not Seasonally Adjusted Interest Burden Divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
TOTLNNSA.INTEREST.by.GDP_mva050 Calc Total Loans Not Seasonally Adjusted Interest Burden Divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
WRESBAL.by.GDP_YoY Calc Reserve Balances with Federal Reserve Banks Divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
WRESBAL.by.GDP_YoY4 Calc Reserve Balances with Federal Reserve Banks Divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
WRESBAL.by.GDP_YoY5 Calc Reserve Balances with Federal Reserve Banks Divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
WRESBAL.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Reserve Balances with Federal Reserve Banks Divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
WRESBAL.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Reserve Balances with Federal Reserve Banks Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
WRESBAL.by.GDP_SmoothDer Calc Derivative of Smoothed Reserve Balances with Federal Reserve Banks Divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
WRESBAL.by.GDP_Log Calc Log of Reserve Balances with Federal Reserve Banks Divided by GDP log() -1.00 1947-01-01 2021-01-01 FALSE FALSE
WRESBAL.by.GDP_mva200 Calc Reserve Balances with Federal Reserve Banks Divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
WRESBAL.by.GDP_mva050 Calc Reserve Balances with Federal Reserve Banks Divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
EXCSRESNW.by.GDP_YoY Calc Excess Reserves of Depository Institutions Divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
EXCSRESNW.by.GDP_YoY4 Calc Excess Reserves of Depository Institutions Divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
EXCSRESNW.by.GDP_YoY5 Calc Excess Reserves of Depository Institutions Divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
EXCSRESNW.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Excess Reserves of Depository Institutions Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
EXCSRESNW.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Excess Reserves of Depository Institutions Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
EXCSRESNW.by.GDP_SmoothDer Calc Derivative of Smoothed Excess Reserves of Depository Institutions Divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
EXCSRESNW.by.GDP_Log Calc Log of Excess Reserves of Depository Institutions Divided by GDP log() -1.00 1947-01-01 2021-01-01 TRUE FALSE
EXCSRESNW.by.GDP_mva200 Calc Excess Reserves of Depository Institutions Divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
EXCSRESNW.by.GDP_mva050 Calc Excess Reserves of Depository Institutions Divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE FALSE
WLRRAL.by.GDP_YoY Calc Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE TRUE
WLRRAL.by.GDP_YoY4 Calc Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
WLRRAL.by.GDP_YoY5 Calc Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 TRUE TRUE
WLRRAL.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
WLRRAL.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
WLRRAL.by.GDP_SmoothDer Calc Derivative of Smoothed Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
WLRRAL.by.GDP_Log Calc Log of Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Divided by GDP log() -1.00 1947-01-01 2021-01-01 TRUE TRUE
WLRRAL.by.GDP_mva200 Calc Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
WLRRAL.by.GDP_mva050 Calc Liabilities and Capital: Liabilities: Reverse Repurchase Agreements: Wednesday Level (NSA) Divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
SOFR99.minus.SOFR1_YoY Calc Secured Overnight Financing Rate: 99th Percentile - 1st Percentile Year over Year Percent -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR99.minus.SOFR1_YoY4 Calc Secured Overnight Financing Rate: 99th Percentile - 1st Percentile 4 Year over 4 Year Percent -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR99.minus.SOFR1_YoY5 Calc Secured Overnight Financing Rate: 99th Percentile - 1st Percentile 5 Year over 5 Year Percent -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR99.minus.SOFR1_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Secured Overnight Financing Rate: 99th Percentile - 1st Percentile /period -1.00 2018-04-03 2021-06-10 TRUE TRUE
SOFR99.minus.SOFR1_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Secured Overnight Financing Rate: 99th Percentile - 1st Percentile /period -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR99.minus.SOFR1_SmoothDer Calc Derivative of Smoothed Secured Overnight Financing Rate: 99th Percentile - 1st Percentile /period -1.00 2018-04-03 2021-06-10 TRUE TRUE
SOFR99.minus.SOFR1_Log Calc Log of Secured Overnight Financing Rate: 99th Percentile - 1st Percentile log() -1.00 2018-04-03 2021-06-10 FALSE FALSE
SOFR99.minus.SOFR1_mva200 Calc Secured Overnight Financing Rate: 99th Percentile - 1st Percentile 200 Day MA 200 Day MA -1.00 2018-04-03 2021-06-10 TRUE TRUE
SOFR99.minus.SOFR1_mva050 Calc Secured Overnight Financing Rate: 99th Percentile - 1st Percentile 50 Day MA 50 Day MA -1.00 2018-04-03 2021-06-10 FALSE FALSE
EXPCH.minus.IMPCH_YoY Calc U.S. Exports to China (FAS Basis) - U.S. Imports to China (Customs Basis) Year over Year Percent -1.00 1985-01-01 2021-04-01 FALSE FALSE
EXPCH.minus.IMPCH_YoY4 Calc U.S. Exports to China (FAS Basis) - U.S. Imports to China (Customs Basis) 4 Year over 4 Year Percent -1.00 1985-01-01 2021-04-01 FALSE FALSE
EXPCH.minus.IMPCH_YoY5 Calc U.S. Exports to China (FAS Basis) - U.S. Imports to China (Customs Basis) 5 Year over 5 Year Percent -1.00 1985-01-01 2021-04-01 FALSE FALSE
EXPCH.minus.IMPCH_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) U.S. Exports to China (FAS Basis) - U.S. Imports to China (Customs Basis) /period -1.00 1985-01-01 2021-04-01 FALSE FALSE
EXPCH.minus.IMPCH_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) U.S. Exports to China (FAS Basis) - U.S. Imports to China (Customs Basis) /period -1.00 1985-01-01 2021-04-01 FALSE FALSE
EXPCH.minus.IMPCH_SmoothDer Calc Derivative of Smoothed U.S. Exports to China (FAS Basis) - U.S. Imports to China (Customs Basis) /period -1.00 1985-01-01 2021-04-01 FALSE FALSE
EXPCH.minus.IMPCH_Log Calc Log of U.S. Exports to China (FAS Basis) - U.S. Imports to China (Customs Basis) log() -1.00 1985-01-01 2021-04-01 TRUE TRUE
EXPCH.minus.IMPCH_mva200 Calc U.S. Exports to China (FAS Basis) - U.S. Imports to China (Customs Basis) 200 Day MA 200 Day MA -1.00 1985-01-01 2021-04-01 TRUE TRUE
EXPCH.minus.IMPCH_mva050 Calc U.S. Exports to China (FAS Basis) - U.S. Imports to China (Customs Basis) 50 Day MA 50 Day MA -1.00 1985-01-01 2021-04-01 TRUE FALSE
EXPMX.minus.IMPMX_YoY Calc Year over Year Percent -1.00 1985-01-01 2021-04-01 FALSE FALSE
EXPMX.minus.IMPMX_YoY4 Calc 4 Year over 4 Year Percent -1.00 1985-01-01 2021-04-01 TRUE FALSE
EXPMX.minus.IMPMX_YoY5 Calc 5 Year over 5 Year Percent -1.00 1985-01-01 2021-04-01 TRUE FALSE
EXPMX.minus.IMPMX_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) /period -1.00 1985-01-01 2021-04-01 FALSE FALSE
EXPMX.minus.IMPMX_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) /period -1.00 1985-01-01 2021-04-01 TRUE FALSE
EXPMX.minus.IMPMX_SmoothDer Calc Derivative of Smoothed /period -1.00 1985-01-01 2021-04-01 FALSE FALSE
EXPMX.minus.IMPMX_Log Calc Log of log() -1.00 1985-01-01 2021-04-01 TRUE TRUE
EXPMX.minus.IMPMX_mva200 Calc 200 Day MA 200 Day MA -1.00 1985-01-01 2021-04-01 TRUE TRUE
EXPMX.minus.IMPMX_mva050 Calc 50 Day MA 50 Day MA -1.00 1985-01-01 2021-04-01 TRUE FALSE
SRPSABSNNCB.by.GDP_YoY Calc Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) Divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
SRPSABSNNCB.by.GDP_YoY4 Calc Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) Divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 TRUE TRUE
SRPSABSNNCB.by.GDP_YoY5 Calc Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) Divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
SRPSABSNNCB.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) Divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE FALSE
SRPSABSNNCB.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
SRPSABSNNCB.by.GDP_SmoothDer Calc Derivative of Smoothed Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) Divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
SRPSABSNNCB.by.GDP_Log Calc Log of Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) Divided by GDP log() -1.00 1947-01-01 2021-01-01 TRUE TRUE
SRPSABSNNCB.by.GDP_mva200 Calc Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) Divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
SRPSABSNNCB.by.GDP_mva050 Calc Nonfinancial corporate business; security repurchase agreements; asset, Level (NSA) Divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASTLL.by.GDP_YoY Calc All sectors; total loans; liability, Level (NSA) Divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASTLL.by.GDP_YoY4 Calc All sectors; total loans; liability, Level (NSA) Divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASTLL.by.GDP_YoY5 Calc All sectors; total loans; liability, Level (NSA) Divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
ASTLL.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) All sectors; total loans; liability, Level (NSA) Divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASTLL.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) All sectors; total loans; liability, Level (NSA) Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
ASTLL.by.GDP_SmoothDer Calc Derivative of Smoothed All sectors; total loans; liability, Level (NSA) Divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
ASTLL.by.GDP_Log Calc Log of All sectors; total loans; liability, Level (NSA) Divided by GDP log() -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASTLL.by.GDP_mva200 Calc All sectors; total loans; liability, Level (NSA) Divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
ASTLL.by.GDP_mva050 Calc All sectors; total loans; liability, Level (NSA) Divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASFMA.by.GDP_YoY Calc All sectors; farm mortgages; asset, Level (NSA) Divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASFMA.by.GDP_YoY4 Calc All sectors; farm mortgages; asset, Level (NSA) Divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASFMA.by.GDP_YoY5 Calc All sectors; farm mortgages; asset, Level (NSA) Divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
ASFMA.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) All sectors; farm mortgages; asset, Level (NSA) Divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASFMA.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) All sectors; farm mortgages; asset, Level (NSA) Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
ASFMA.by.GDP_SmoothDer Calc Derivative of Smoothed All sectors; farm mortgages; asset, Level (NSA) Divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
ASFMA.by.GDP_Log Calc Log of All sectors; farm mortgages; asset, Level (NSA) Divided by GDP log() -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASFMA.by.GDP_mva200 Calc All sectors; farm mortgages; asset, Level (NSA) Divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
ASFMA.by.GDP_mva050 Calc All sectors; farm mortgages; asset, Level (NSA) Divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASFMA.by.ASTLL_YoY Calc All sectors; total loans Divided by farm mortgages Year over Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASFMA.by.ASTLL_YoY4 Calc All sectors; total loans Divided by farm mortgages 4 Year over 4 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASFMA.by.ASTLL_YoY5 Calc All sectors; total loans Divided by farm mortgages 5 Year over 5 Year Percent -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASFMA.by.ASTLL_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) All sectors; total loans Divided by farm mortgages /period -1.00 1945-10-01 2021-01-01 TRUE FALSE
ASFMA.by.ASTLL_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) All sectors; total loans Divided by farm mortgages /period -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASFMA.by.ASTLL_SmoothDer Calc Derivative of Smoothed All sectors; total loans Divided by farm mortgages /period -1.00 1945-10-01 2021-01-01 TRUE TRUE
ASFMA.by.ASTLL_Log Calc Log of All sectors; total loans Divided by farm mortgages log() -1.00 1945-10-01 2021-01-01 TRUE FALSE
ASFMA.by.ASTLL_mva200 Calc All sectors; total loans Divided by farm mortgages 200 Day MA 200 Day MA -1.00 1945-10-01 2021-01-01 FALSE FALSE
ASFMA.by.ASTLL_mva050 Calc All sectors; total loans Divided by farm mortgages 50 Day MA 50 Day MA -1.00 1945-10-01 2021-01-01 TRUE FALSE
ASFMA.INTEREST_YoY Calc Farm Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens Year over Year Percent -1.00 1971-04-02 2021-06-10 FALSE FALSE
ASFMA.INTEREST_YoY4 Calc Farm Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens 4 Year over 4 Year Percent -1.00 1971-04-02 2021-06-10 FALSE FALSE
ASFMA.INTEREST_YoY5 Calc Farm Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens 5 Year over 5 Year Percent -1.00 1971-04-02 2021-06-10 FALSE FALSE
ASFMA.INTEREST_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Farm Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens /period -1.00 1971-04-02 2021-06-10 TRUE TRUE
ASFMA.INTEREST_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Farm Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens /period -1.00 1971-04-02 2021-06-10 FALSE FALSE
ASFMA.INTEREST_SmoothDer Calc Derivative of Smoothed Farm Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens /period -1.00 1971-04-02 2021-06-10 TRUE TRUE
ASFMA.INTEREST_Log Calc Log of Farm Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens log() -1.00 1971-04-02 2021-06-10 FALSE FALSE
ASFMA.INTEREST_mva200 Calc Farm Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens 200 Day MA 200 Day MA -1.00 1971-04-02 2021-06-10 TRUE TRUE
ASFMA.INTEREST_mva050 Calc Farm Mortgages (Quarterly, NSA) 30-Year Fixed Interest Burdens 50 Day MA 50 Day MA -1.00 1971-04-02 2021-06-10 FALSE FALSE
ASFMA.INTEREST.by.GDP_YoY Calc Farm Mortgages (Quarterly, NSA) Interest Burden Divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
ASFMA.INTEREST.by.GDP_YoY4 Calc Farm Mortgages (Quarterly, NSA) Interest Burden Divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
ASFMA.INTEREST.by.GDP_YoY5 Calc Farm Mortgages (Quarterly, NSA) Interest Burden Divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
ASFMA.INTEREST.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Farm Mortgages (Quarterly, NSA) Interest Burden Divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
ASFMA.INTEREST.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Farm Mortgages (Quarterly, NSA) Interest Burden Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
ASFMA.INTEREST.by.GDP_SmoothDer Calc Derivative of Smoothed Farm Mortgages (Quarterly, NSA) Interest Burden Divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
ASFMA.INTEREST.by.GDP_Log Calc Log of Farm Mortgages (Quarterly, NSA) Interest Burden Divided by GDP log() -1.00 1947-01-01 2021-01-01 FALSE FALSE
ASFMA.INTEREST.by.GDP_mva200 Calc Farm Mortgages (Quarterly, NSA) Interest Burden Divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 TRUE FALSE
ASFMA.INTEREST.by.GDP_mva050 Calc Farm Mortgages (Quarterly, NSA) Interest Burden Divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
FARMINCOME.by.GDP_YoY Calc Farm Income (Annual, NSA) Divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
FARMINCOME.by.GDP_YoY4 Calc Farm Income (Annual, NSA) Divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
FARMINCOME.by.GDP_YoY5 Calc Farm Income (Annual, NSA) Divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
FARMINCOME.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Farm Income (Annual, NSA) Divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE FALSE
FARMINCOME.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Farm Income (Annual, NSA) Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
FARMINCOME.by.GDP_SmoothDer Calc Derivative of Smoothed Farm Income (Annual, NSA) Divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
FARMINCOME.by.GDP_Log Calc Log of Farm Income (Annual, NSA) Divided by GDP log() -1.00 1947-01-01 2021-01-01 TRUE FALSE
FARMINCOME.by.GDP_mva200 Calc Farm Income (Annual, NSA) Divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 FALSE FALSE
FARMINCOME.by.GDP_mva050 Calc Farm Income (Annual, NSA) Divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE FALSE
BOGMBASE.by.GDP_YoY Calc BOGMBASE Divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
BOGMBASE.by.GDP_YoY4 Calc BOGMBASE Divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
BOGMBASE.by.GDP_YoY5 Calc BOGMBASE Divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 TRUE TRUE
BOGMBASE.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) BOGMBASE Divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
BOGMBASE.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) BOGMBASE Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
BOGMBASE.by.GDP_SmoothDer Calc Derivative of Smoothed BOGMBASE Divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
BOGMBASE.by.GDP_Log Calc Log of BOGMBASE Divided by GDP log() -1.00 1947-01-01 2021-01-01 TRUE TRUE
BOGMBASE.by.GDP_mva200 Calc BOGMBASE Divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
BOGMBASE.by.GDP_mva050 Calc BOGMBASE Divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
WALCL.by.GDP_YoY Calc All Federal Reserve Banks: Total Assets Divided by GDP Year over Year Percent -1.00 1947-01-01 2021-01-01 TRUE FALSE
WALCL.by.GDP_YoY4 Calc All Federal Reserve Banks: Total Assets Divided by GDP 4 Year over 4 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
WALCL.by.GDP_YoY5 Calc All Federal Reserve Banks: Total Assets Divided by GDP 5 Year over 5 Year Percent -1.00 1947-01-01 2021-01-01 FALSE FALSE
WALCL.by.GDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) All Federal Reserve Banks: Total Assets Divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
WALCL.by.GDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) All Federal Reserve Banks: Total Assets Divided by GDP /period -1.00 1947-01-01 2021-01-01 FALSE FALSE
WALCL.by.GDP_SmoothDer Calc Derivative of Smoothed All Federal Reserve Banks: Total Assets Divided by GDP /period -1.00 1947-01-01 2021-01-01 TRUE TRUE
WALCL.by.GDP_Log Calc Log of All Federal Reserve Banks: Total Assets Divided by GDP log() -1.00 1947-01-01 2021-01-01 TRUE TRUE
WALCL.by.GDP_mva200 Calc All Federal Reserve Banks: Total Assets Divided by GDP 200 Day MA 200 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
WALCL.by.GDP_mva050 Calc All Federal Reserve Banks: Total Assets Divided by GDP 50 Day MA 50 Day MA -1.00 1947-01-01 2021-01-01 TRUE TRUE
ECBASSETS.by.EUNNGDP_YoY Calc Central Bank Assets for Euro Area (11-19 Countries) Divided by GDP Year over Year Percent -1.00 1995-01-01 2021-01-01 TRUE FALSE
ECBASSETS.by.EUNNGDP_YoY4 Calc Central Bank Assets for Euro Area (11-19 Countries) Divided by GDP 4 Year over 4 Year Percent -1.00 1995-01-01 2021-01-01 FALSE FALSE
ECBASSETS.by.EUNNGDP_YoY5 Calc Central Bank Assets for Euro Area (11-19 Countries) Divided by GDP 5 Year over 5 Year Percent -1.00 1995-01-01 2021-01-01 FALSE FALSE
ECBASSETS.by.EUNNGDP_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Central Bank Assets for Euro Area (11-19 Countries) Divided by GDP /period -1.00 1995-01-01 2021-01-01 FALSE FALSE
ECBASSETS.by.EUNNGDP_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Central Bank Assets for Euro Area (11-19 Countries) Divided by GDP /period -1.00 1995-01-01 2021-01-01 FALSE FALSE
ECBASSETS.by.EUNNGDP_SmoothDer Calc Derivative of Smoothed Central Bank Assets for Euro Area (11-19 Countries) Divided by GDP /period -1.00 1995-01-01 2021-01-01 TRUE TRUE
ECBASSETS.by.EUNNGDP_Log Calc Log of Central Bank Assets for Euro Area (11-19 Countries) Divided by GDP log() -1.00 1995-01-01 2021-01-01 TRUE FALSE
ECBASSETS.by.EUNNGDP_mva200 Calc Central Bank Assets for Euro Area (11-19 Countries) Divided by GDP 200 Day MA 200 Day MA -1.00 1995-01-01 2021-01-01 FALSE FALSE
ECBASSETS.by.EUNNGDP_mva050 Calc Central Bank Assets for Euro Area (11-19 Countries) Divided by GDP 50 Day MA 50 Day MA -1.00 1995-01-01 2021-01-01 TRUE FALSE
DGS30TO10_YoY Calc Yield Curve, 30 and 10 Year Treasury (DGS30-DGS10) Year over Year Percent -1.00 1977-02-15 2021-06-10 FALSE FALSE
DGS30TO10_YoY4 Calc Yield Curve, 30 and 10 Year Treasury (DGS30-DGS10) 4 Year over 4 Year Percent -1.00 1977-02-15 2021-06-10 TRUE FALSE
DGS30TO10_YoY5 Calc Yield Curve, 30 and 10 Year Treasury (DGS30-DGS10) 5 Year over 5 Year Percent -1.00 1977-02-15 2021-06-10 FALSE FALSE
DGS30TO10_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Yield Curve, 30 and 10 Year Treasury (DGS30-DGS10) /period -1.00 1977-02-15 2021-06-10 FALSE FALSE
DGS30TO10_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Yield Curve, 30 and 10 Year Treasury (DGS30-DGS10) /period -1.00 1977-02-15 2021-06-10 FALSE FALSE
DGS30TO10_SmoothDer Calc Derivative of Smoothed Yield Curve, 30 and 10 Year Treasury (DGS30-DGS10) /period -1.00 1977-02-15 2021-06-10 TRUE TRUE
DGS30TO10_Log Calc Log of Yield Curve, 30 and 10 Year Treasury (DGS30-DGS10) log() -1.00 1977-02-15 2021-06-10 TRUE TRUE
DGS30TO10_mva200 Calc Yield Curve, 30 and 10 Year Treasury (DGS30-DGS10) 200 Day MA 200 Day MA -1.00 1977-02-15 2021-06-10 FALSE FALSE
DGS30TO10_mva050 Calc Yield Curve, 30 and 10 Year Treasury (DGS30-DGS10) 50 Day MA 50 Day MA -1.00 1977-02-15 2021-06-10 TRUE FALSE
DGS10TO1_YoY Calc Yield Curve, 10 and 1 Year Treasury (DGS10-DGS1) Year over Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10TO1_YoY4 Calc Yield Curve, 10 and 1 Year Treasury (DGS10-DGS1) 4 Year over 4 Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10TO1_YoY5 Calc Yield Curve, 10 and 1 Year Treasury (DGS10-DGS1) 5 Year over 5 Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10TO1_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Yield Curve, 10 and 1 Year Treasury (DGS10-DGS1) /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10TO1_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Yield Curve, 10 and 1 Year Treasury (DGS10-DGS1) /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10TO1_SmoothDer Calc Derivative of Smoothed Yield Curve, 10 and 1 Year Treasury (DGS10-DGS1) /period -1.00 1962-01-02 2021-06-10 TRUE TRUE
DGS10TO1_Log Calc Log of Yield Curve, 10 and 1 Year Treasury (DGS10-DGS1) log() -1.00 1962-01-02 2021-06-10 TRUE TRUE
DGS10TO1_mva200 Calc Yield Curve, 10 and 1 Year Treasury (DGS10-DGS1) 200 Day MA 200 Day MA -1.00 1962-01-02 2021-06-10 TRUE TRUE
DGS10TO1_mva050 Calc Yield Curve, 10 and 1 Year Treasury (DGS10-DGS1) 50 Day MA 50 Day MA -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10TO2_YoY Calc Yield Curve, 10 and 2 Year Treasury (DGS10-DGS2) Year over Year Percent -1.00 1976-06-01 2021-06-10 FALSE FALSE
DGS10TO2_YoY4 Calc Yield Curve, 10 and 2 Year Treasury (DGS10-DGS2) 4 Year over 4 Year Percent -1.00 1976-06-01 2021-06-10 FALSE FALSE
DGS10TO2_YoY5 Calc Yield Curve, 10 and 2 Year Treasury (DGS10-DGS2) 5 Year over 5 Year Percent -1.00 1976-06-01 2021-06-10 FALSE FALSE
DGS10TO2_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Yield Curve, 10 and 2 Year Treasury (DGS10-DGS2) /period -1.00 1976-06-01 2021-06-10 FALSE FALSE
DGS10TO2_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Yield Curve, 10 and 2 Year Treasury (DGS10-DGS2) /period -1.00 1976-06-01 2021-06-10 FALSE FALSE
DGS10TO2_SmoothDer Calc Derivative of Smoothed Yield Curve, 10 and 2 Year Treasury (DGS10-DGS2) /period -1.00 1976-06-01 2021-06-10 TRUE TRUE
DGS10TO2_Log Calc Log of Yield Curve, 10 and 2 Year Treasury (DGS10-DGS2) log() -1.00 1976-06-01 2021-06-10 TRUE TRUE
DGS10TO2_mva200 Calc Yield Curve, 10 and 2 Year Treasury (DGS10-DGS2) 200 Day MA 200 Day MA -1.00 1976-06-01 2021-06-10 TRUE TRUE
DGS10TO2_mva050 Calc Yield Curve, 10 and 2 Year Treasury (DGS10-DGS2) 50 Day MA 50 Day MA -1.00 1976-06-01 2021-06-10 FALSE FALSE
DGS10TOTB3MS_YoY Calc Yield Curve, 10 and 3 Month Treasury (DGS10-TB3MS) Year over Year Percent -1.00 1962-01-02 2021-05-01 FALSE FALSE
DGS10TOTB3MS_YoY4 Calc Yield Curve, 10 and 3 Month Treasury (DGS10-TB3MS) 4 Year over 4 Year Percent -1.00 1962-01-02 2021-05-01 FALSE FALSE
DGS10TOTB3MS_YoY5 Calc Yield Curve, 10 and 3 Month Treasury (DGS10-TB3MS) 5 Year over 5 Year Percent -1.00 1962-01-02 2021-05-01 FALSE FALSE
DGS10TOTB3MS_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Yield Curve, 10 and 3 Month Treasury (DGS10-TB3MS) /period -1.00 1962-01-02 2021-05-01 FALSE FALSE
DGS10TOTB3MS_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Yield Curve, 10 and 3 Month Treasury (DGS10-TB3MS) /period -1.00 1962-01-02 2021-05-01 FALSE FALSE
DGS10TOTB3MS_SmoothDer Calc Derivative of Smoothed Yield Curve, 10 and 3 Month Treasury (DGS10-TB3MS) /period -1.00 1962-01-02 2021-05-01 FALSE FALSE
DGS10TOTB3MS_Log Calc Log of Yield Curve, 10 and 3 Month Treasury (DGS10-TB3MS) log() -1.00 1962-01-02 2021-05-01 TRUE TRUE
DGS10TOTB3MS_mva200 Calc Yield Curve, 10 and 3 Month Treasury (DGS10-TB3MS) 200 Day MA 200 Day MA -1.00 1962-01-02 2021-05-01 TRUE TRUE
DGS10TOTB3MS_mva050 Calc Yield Curve, 10 and 3 Month Treasury (DGS10-TB3MS) 50 Day MA 50 Day MA -1.00 1962-01-02 2021-05-01 FALSE FALSE
DGS10TODTB3_YoY Calc Yield Curve, 10 and 3 Month Treasury (DGS10-DTB3) Year over Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10TODTB3_YoY4 Calc Yield Curve, 10 and 3 Month Treasury (DGS10-DTB3) 4 Year over 4 Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10TODTB3_YoY5 Calc Yield Curve, 10 and 3 Month Treasury (DGS10-DTB3) 5 Year over 5 Year Percent -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10TODTB3_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Yield Curve, 10 and 3 Month Treasury (DGS10-DTB3) /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10TODTB3_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Yield Curve, 10 and 3 Month Treasury (DGS10-DTB3) /period -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10TODTB3_SmoothDer Calc Derivative of Smoothed Yield Curve, 10 and 3 Month Treasury (DGS10-DTB3) /period -1.00 1962-01-02 2021-06-10 TRUE TRUE
DGS10TODTB3_Log Calc Log of Yield Curve, 10 and 3 Month Treasury (DGS10-DTB3) log() -1.00 1962-01-02 2021-06-10 TRUE TRUE
DGS10TODTB3_mva200 Calc Yield Curve, 10 and 3 Month Treasury (DGS10-DTB3) 200 Day MA 200 Day MA -1.00 1962-01-02 2021-06-10 TRUE TRUE
DGS10TODTB3_mva050 Calc Yield Curve, 10 and 3 Month Treasury (DGS10-DTB3) 50 Day MA 50 Day MA -1.00 1962-01-02 2021-06-10 FALSE FALSE
DGS10ByAAA_YoY Calc AAA ratio to 10 year treasury (AAA/DGS10) Year over Year Percent -1.00 1962-01-02 2021-05-01 FALSE FALSE
DGS10ByAAA_YoY4 Calc AAA ratio to 10 year treasury (AAA/DGS10) 4 Year over 4 Year Percent -1.00 1962-01-02 2021-05-01 FALSE FALSE
DGS10ByAAA_YoY5 Calc AAA ratio to 10 year treasury (AAA/DGS10) 5 Year over 5 Year Percent -1.00 1962-01-02 2021-05-01 FALSE FALSE
DGS10ByAAA_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) AAA ratio to 10 year treasury (AAA/DGS10) /period -1.00 1962-01-02 2021-05-01 TRUE FALSE
DGS10ByAAA_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) AAA ratio to 10 year treasury (AAA/DGS10) /period -1.00 1962-01-02 2021-05-01 FALSE FALSE
DGS10ByAAA_SmoothDer Calc Derivative of Smoothed AAA ratio to 10 year treasury (AAA/DGS10) /period -1.00 1962-01-02 2021-05-01 TRUE TRUE
DGS10ByAAA_Log Calc Log of AAA ratio to 10 year treasury (AAA/DGS10) log() -1.00 1962-01-02 2021-05-01 TRUE FALSE
DGS10ByAAA_mva200 Calc AAA ratio to 10 year treasury (AAA/DGS10) 200 Day MA 200 Day MA -1.00 1962-01-02 2021-05-01 FALSE FALSE
DGS10ByAAA_mva050 Calc AAA ratio to 10 year treasury (AAA/DGS10) 50 Day MA 50 Day MA -1.00 1962-01-02 2021-05-01 TRUE FALSE
LNU03000000BYPOPTHM_YoY Calc Unemployment level (NSA) / Population Year over Year Percent -1.00 1959-01-01 2021-04-01 TRUE FALSE
LNU03000000BYPOPTHM_YoY4 Calc Unemployment level (NSA) / Population 4 Year over 4 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
LNU03000000BYPOPTHM_YoY5 Calc Unemployment level (NSA) / Population 5 Year over 5 Year Percent -1.00 1959-01-01 2021-04-01 FALSE FALSE
LNU03000000BYPOPTHM_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Unemployment level (NSA) / Population /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
LNU03000000BYPOPTHM_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Unemployment level (NSA) / Population /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
LNU03000000BYPOPTHM_SmoothDer Calc Derivative of Smoothed Unemployment level (NSA) / Population /period -1.00 1959-01-01 2021-04-01 TRUE TRUE
LNU03000000BYPOPTHM_Log Calc Log of Unemployment level (NSA) / Population log() -1.00 1959-01-01 2021-04-01 TRUE FALSE
LNU03000000BYPOPTHM_mva200 Calc Unemployment level (NSA) / Population 200 Day MA 200 Day MA -1.00 1959-01-01 2021-04-01 FALSE FALSE
LNU03000000BYPOPTHM_mva050 Calc Unemployment level (NSA) / Population 50 Day MA 50 Day MA -1.00 1959-01-01 2021-04-01 FALSE FALSE
UNEMPLOYBYPOPTHM_YoY Calc Unemployment level, seasonally adjusted / Population Year over Year Percent -1.00 1959-01-01 2021-04-01 TRUE FALSE
UNEMPLOYBYPOPTHM_YoY4 Calc Unemployment level, seasonally adjusted / Population 4 Year over 4 Year Percent -1.00 1959-01-01 2021-04-01 TRUE FALSE
UNEMPLOYBYPOPTHM_YoY5 Calc Unemployment level, seasonally adjusted / Population 5 Year over 5 Year Percent -1.00 1959-01-01 2021-04-01 TRUE FALSE
UNEMPLOYBYPOPTHM_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Unemployment level, seasonally adjusted / Population /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
UNEMPLOYBYPOPTHM_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Unemployment level, seasonally adjusted / Population /period -1.00 1959-01-01 2021-04-01 FALSE FALSE
UNEMPLOYBYPOPTHM_SmoothDer Calc Derivative of Smoothed Unemployment level, seasonally adjusted / Population /period -1.00 1959-01-01 2021-04-01 TRUE TRUE
UNEMPLOYBYPOPTHM_Log Calc Log of Unemployment level, seasonally adjusted / Population log() -1.00 1959-01-01 2021-04-01 TRUE FALSE
UNEMPLOYBYPOPTHM_mva200 Calc Unemployment level, seasonally adjusted / Population 200 Day MA 200 Day MA -1.00 1959-01-01 2021-04-01 FALSE FALSE
UNEMPLOYBYPOPTHM_mva050 Calc Unemployment level, seasonally adjusted / Population 50 Day MA 50 Day MA -1.00 1959-01-01 2021-04-01 FALSE FALSE
NPPTTLBYPOPTHM_YoY Calc ADP Private Employment / Population Year over Year Percent -1.00 2002-04-01 2021-04-01 FALSE FALSE
NPPTTLBYPOPTHM_YoY4 Calc ADP Private Employment / Population 4 Year over 4 Year Percent -1.00 2002-04-01 2021-04-01 FALSE FALSE
NPPTTLBYPOPTHM_YoY5 Calc ADP Private Employment / Population 5 Year over 5 Year Percent -1.00 2002-04-01 2021-04-01 FALSE FALSE
NPPTTLBYPOPTHM_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) ADP Private Employment / Population /period -1.00 2002-04-01 2021-04-01 TRUE TRUE
NPPTTLBYPOPTHM_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) ADP Private Employment / Population /period -1.00 2002-04-01 2021-04-01 FALSE FALSE
NPPTTLBYPOPTHM_SmoothDer Calc Derivative of Smoothed ADP Private Employment / Population /period -1.00 2002-04-01 2021-04-01 FALSE FALSE
NPPTTLBYPOPTHM_Log Calc Log of ADP Private Employment / Population log() -1.00 2002-04-01 2021-04-01 TRUE TRUE
NPPTTLBYPOPTHM_mva200 Calc ADP Private Employment / Population 200 Day MA 200 Day MA -1.00 2002-04-01 2021-04-01 TRUE TRUE
NPPTTLBYPOPTHM_mva050 Calc ADP Private Employment / Population 50 Day MA 50 Day MA -1.00 2002-04-01 2021-04-01 TRUE TRUE
U6toU3_YoY Calc U6RATE minums UNRATE Year over Year Percent -1.00 1994-01-01 2021-05-01 TRUE FALSE
U6toU3_YoY4 Calc U6RATE minums UNRATE 4 Year over 4 Year Percent -1.00 1994-01-01 2021-05-01 TRUE FALSE
U6toU3_YoY5 Calc U6RATE minums UNRATE 5 Year over 5 Year Percent -1.00 1994-01-01 2021-05-01 FALSE FALSE
U6toU3_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) U6RATE minums UNRATE /period -1.00 1994-01-01 2021-05-01 FALSE FALSE
U6toU3_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) U6RATE minums UNRATE /period -1.00 1994-01-01 2021-05-01 FALSE FALSE
U6toU3_SmoothDer Calc Derivative of Smoothed U6RATE minums UNRATE /period -1.00 1994-01-01 2021-05-01 TRUE TRUE
U6toU3_Log Calc Log of U6RATE minums UNRATE log() -1.00 1994-01-01 2021-05-01 TRUE FALSE
U6toU3_mva200 Calc U6RATE minums UNRATE 200 Day MA 200 Day MA -1.00 1994-01-01 2021-05-01 FALSE FALSE
U6toU3_mva050 Calc U6RATE minums UNRATE 50 Day MA 50 Day MA -1.00 1994-01-01 2021-05-01 TRUE FALSE
CHRISCMEHG1.by.PPIACO_YoY Calc Copper, $/lb, Normalized by commodities producer price index Year over Year Percent -1.00 1959-07-01 2021-04-01 FALSE FALSE
CHRISCMEHG1.by.PPIACO_YoY4 Calc Copper, $/lb, Normalized by commodities producer price index 4 Year over 4 Year Percent -1.00 1959-07-01 2021-04-01 FALSE FALSE
CHRISCMEHG1.by.PPIACO_YoY5 Calc Copper, $/lb, Normalized by commodities producer price index 5 Year over 5 Year Percent -1.00 1959-07-01 2021-04-01 FALSE FALSE
CHRISCMEHG1.by.PPIACO_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Copper, $/lb, Normalized by commodities producer price index /period -1.00 1959-07-01 2021-04-01 TRUE TRUE
CHRISCMEHG1.by.PPIACO_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Copper, $/lb, Normalized by commodities producer price index /period -1.00 1959-07-01 2021-04-01 FALSE FALSE
CHRISCMEHG1.by.PPIACO_SmoothDer Calc Derivative of Smoothed Copper, $/lb, Normalized by commodities producer price index /period -1.00 1959-07-01 2021-04-01 FALSE FALSE
CHRISCMEHG1.by.PPIACO_Log Calc Log of Copper, $/lb, Normalized by commodities producer price index log() -1.00 1959-07-01 2021-04-01 FALSE FALSE
CHRISCMEHG1.by.PPIACO_mva200 Calc Copper, $/lb, Normalized by commodities producer price index 200 Day MA 200 Day MA -1.00 1959-07-01 2021-04-01 TRUE TRUE
CHRISCMEHG1.by.PPIACO_mva050 Calc Copper, $/lb, Normalized by commodities producer price index 50 Day MA 50 Day MA -1.00 1959-07-01 2021-04-01 TRUE TRUE
CHRISCMEHG1.by.CPIAUCSL_YoY Calc Copper, $/lb, Normalized by consumer price index Year over Year Percent -1.00 1959-07-01 2021-05-01 FALSE FALSE
CHRISCMEHG1.by.CPIAUCSL_YoY4 Calc Copper, $/lb, Normalized by consumer price index 4 Year over 4 Year Percent -1.00 1959-07-01 2021-05-01 FALSE FALSE
CHRISCMEHG1.by.CPIAUCSL_YoY5 Calc Copper, $/lb, Normalized by consumer price index 5 Year over 5 Year Percent -1.00 1959-07-01 2021-05-01 FALSE FALSE
CHRISCMEHG1.by.CPIAUCSL_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Copper, $/lb, Normalized by consumer price index /period -1.00 1959-07-01 2021-05-01 TRUE TRUE
CHRISCMEHG1.by.CPIAUCSL_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Copper, $/lb, Normalized by consumer price index /period -1.00 1959-07-01 2021-05-01 FALSE FALSE
CHRISCMEHG1.by.CPIAUCSL_SmoothDer Calc Derivative of Smoothed Copper, $/lb, Normalized by consumer price index /period -1.00 1959-07-01 2021-05-01 FALSE FALSE
CHRISCMEHG1.by.CPIAUCSL_Log Calc Log of Copper, $/lb, Normalized by consumer price index log() -1.00 1959-07-01 2021-05-01 FALSE FALSE
CHRISCMEHG1.by.CPIAUCSL_mva200 Calc Copper, $/lb, Normalized by consumer price index 200 Day MA 200 Day MA -1.00 1959-07-01 2021-05-01 TRUE TRUE
CHRISCMEHG1.by.CPIAUCSL_mva050 Calc Copper, $/lb, Normalized by consumer price index 50 Day MA 50 Day MA -1.00 1959-07-01 2021-05-01 TRUE TRUE
DCOILBRENTEU.by.PPIACO_YoY Calc Crude Oil - Brent, $/bbl, Normalized by producer price index c.o. Year over Year Percent -1.00 1987-05-20 2021-04-01 FALSE FALSE
DCOILBRENTEU.by.PPIACO_YoY4 Calc Crude Oil - Brent, $/bbl, Normalized by producer price index c.o. 4 Year over 4 Year Percent -1.00 1987-05-20 2021-04-01 FALSE FALSE
DCOILBRENTEU.by.PPIACO_YoY5 Calc Crude Oil - Brent, $/bbl, Normalized by producer price index c.o. 5 Year over 5 Year Percent -1.00 1987-05-20 2021-04-01 TRUE FALSE
DCOILBRENTEU.by.PPIACO_Smooth Calc Savitsky-Golay Smoothed (p=3, n=365) Crude Oil - Brent, $/bbl, Normalized by producer price index c.o. /period -1.00 1987-05-20 2021-04-01 FALSE FALSE
DCOILBRENTEU.by.PPIACO_Smooth.short Calc Savitsky-Golay Smoothed (p=3, n=15) Crude Oil - Brent, $/bbl, Normalized by producer price index c.o. /period -1.00 1987-05-20 2021-04-01 FALSE FALSE
DCOILBRENTEU.by.PPIACO_SmoothDer Calc Derivative of Smoothed Crude Oil - Brent, $/bbl, Normalized by producer price index c.o. /period -1.00 1987-05-20 2021-04-01 FALSE FALSE
DCOILBRENTEU.by.PPIACO_Log Calc Log of Crude Oil - Brent, $/bbl, Normalized by producer price index c.o. log() -1.00 1987-05-20 2021-04-01 FALSE FALSE
DCOILBRENTEU.by.PPIACO_mva200 Calc Crude Oil - Brent, $/bbl, Normalized by producer price index c.o. 200 Day MA 200 Day MA -1.00 1987-05-20 2021-04-01 TRUE TRUE
DCOILBRENTEU.by.PPIACO_mva050 Calc Crude Oil - Brent, $/bbl, Normalized by producer price index c.o. 50 Day MA 50 Day MA -1.00 1987-05-20 2021-04-01 TRUE TRUE
DCOILWTICO.by.PPIACO_YoY Calc Crude Oil - WTI, $/bbl, Normalized by producer price index c.o. Year over Year Percent -1.00 1986-01-02 2021-04-01 FALSE FALSE
DCOILWTICO.by.PPIACO_YoY4 Calc Crude Oil - WTI, \(/bbl, Normalized by producer price index c.o. 4 Year over 4 Year </td> <td style="text-align:left;"> Percent </td> <td style="text-align:right;"> -1.00 </td> <td style="text-align:left;"> 1986-01-02 </td> <td style="text-align:left;"> 2021-04-01 </td> <td style="text-align:left;"> TRUE </td> <td style="text-align:left;"> TRUE </td> </tr> <tr> <td style="text-align:left;width: 1.5in; display: inline-block;; "> DCOILWTICO.by.PPIACO_YoY5 </td> <td style="text-align:left;width: 10em; "> Calc </td> <td style="text-align:left;"> Crude Oil - WTI, latex2e07b669fb523ed3ed33a80690ae2157/\)) -1.00 1947-01-01 2021-01-01 FALSE FALSE
retBase Calc S&P 500 Rate of Change Percent -1.00 1962-02-01 2021-06-13 FALSE FALSE
retBaseShort_TB3MS Calc retBaseShort_TB3MS Rate of Change Percent -1.00 1962-02-01 2021-06-13 FALSE FALSE
eqBase Calc Equity Return, 100% long $1 Invested -1.00 1962-02-01 2021-06-13 FALSE FALSE
eqBaseShort_TB3MS Calc 3-Month t-Bill Return, 100% long $1 Invested -1.00 1962-02-01 2021-06-13 FALSE FALSE
RecInit Calc 1 for Recession Initiation Period, 0 For All Else (-) -1.00 1854-12-01 2021-05-01 FALSE FALSE
RecInit_Smooth Calc 1 for Recession Initiation Period, 0 For All Else (Smoothed) (-) -1.00 1854-12-01 2021-05-01 FALSE FALSE
ret050MAMinus200MA Calc Rate of Change, 50 DMA - 200 DMA Rule Percent -1.00 1962-02-01 2021-06-13 FALSE FALSE
ret050MAMinus200MARet Calc Equity Return, 50 DMA - 200 DMA Rule $1 Invested -1.00 1962-02-01 2021-06-13 FALSE FALSE
RLG.Open_CORR_GSPC.Open calc Rolling Correlation 30 Day Window
-1.00 NA NA FALSE FALSE
RLG.Open_CORR_MDY.Open calc Rolling Correlation 30 Day Window
-1.00 NA NA FALSE FALSE
FINRAMarginDebt_YoY_CORR_GSPC.Close_YoY calc Rolling Correlation 90 Day Window
-1.00 1959-01-31 2021-03-31 FALSE FALSE
FINRAMarginDebt_YoY_CORR_RLG.Close_YoY calc Rolling Correlation 90 Day Window
-1.00 2002-09-30 2021-03-31 FALSE FALSE
VIXCLS_CORR_GSPC.Open calc Rolling Correlation 30 Day Window
-1.00 1990-01-02 2021-06-10 FALSE FALSE
INDPRO_YoY_CORR_GSPC.Close_YoY calc Rolling Correlation 360 Day Window
-1.00 1927-12-30 2021-04-01 FALSE FALSE
RSALESAGG_YoY_CORR_UNEMPLOY_YoY calc Rolling Correlation 180 Day Window
-1.00 1948-01-01 2021-04-01 FALSE FALSE
INDPRO_CORR_RSALESAGG calc Rolling Correlation 30 Day Window
-1.00 1947-01-01 2021-04-01 FALSE FALSE
INDPRO_YoY_CORR_RSALESAGG_YoY calc Rolling Correlation 30 Day Window
-1.00 1947-01-01 2021-04-01 FALSE FALSE
INDPRO_YoY_CORR_CHRISCMEHG1_YoY calc Rolling Correlation 360 Day Window
-1.00 1919-01-01 1900-01-01 FALSE FALSE
DGS10TO1_Smooth.short_CORR_TOTLNNSA_YoY calc Rolling Correlation 60 Day Window
-1.00 1962-01-02 2021-05-01 FALSE FALSE
DGS10_CORR_TOTLNNSA_YoY calc Rolling Correlation 30 Day Window
-1.00 1962-01-02 2021-05-01 FALSE FALSE
TOTLNNSA_YoY_CORR_DGS10TO1 calc Rolling Correlation 720 Day Window
-1.00 1962-01-02 2021-05-01 FALSE FALSE
UNRATE_CORR_PSAVERT calc Rolling Correlation 360 Day Window
-1.00 1959-01-01 2021-04-01 FALSE FALSE
GDPBYCPIAUCSLBYPOPTHM_SmoothDer_CORR_RecInit_Smooth calc Rolling Correlation 30 Day Window
-1.00 1959-01-01 2021-04-01 FALSE FALSE